call expanduser for src and dest

pull/6073/head
muffl0n 11 years ago
parent 0bf51a6df1
commit 5f0e882d01

@ -46,8 +46,8 @@ class ActionModule(object):
if complex_args: if complex_args:
options.update(complex_args) options.update(complex_args)
options.update(utils.parse_kv(module_args)) options.update(utils.parse_kv(module_args))
source = options.get('src', None) source = os.path.expanduser(options.get('src', None))
dest = options.get('dest', None) dest = os.path.expanduser(options.get('dest', None))
copy = utils.boolean(options.get('copy', 'yes')) copy = utils.boolean(options.get('copy', 'yes'))
if source is None or dest is None: if source is None or dest is None:

Loading…
Cancel
Save