Call os.path.expanduser in modules so things work as expected even when using ./hacking/test-module script

This commit is contained in:
Michael DeHaan 2012-04-20 07:57:39 -04:00
parent f74984fb4a
commit ba882d98e1
2 changed files with 4 additions and 4 deletions

4
copy
View file

@ -40,8 +40,8 @@ for x in items:
(k, v) = x.split("=")
params[k] = v
src = params['src']
dest = params['dest']
src = os.path.expanduser(params['src'])
dest = os.path.expanduser(params['dest'])
# raise an error if there is no src file

4
file
View file

@ -88,8 +88,8 @@ for x in items:
params[k] = v
state = params.get('state','file')
path = params.get('path', params.get('dest', params.get('name', None)))
src = params.get('src', None)
path = os.path.expanduser(params.get('path', params.get('dest', params.get('name', None))))
src = os.path.expanduser(params.get('src', None))
dest = params.get('dest', None)
mode = params.get('mode', None)
owner = params.get('owner', None)