call expanduser for src and dest
This commit is contained in:
parent
0bf51a6df1
commit
5f0e882d01
1 changed files with 2 additions and 2 deletions
|
@ -46,8 +46,8 @@ class ActionModule(object):
|
|||
if complex_args:
|
||||
options.update(complex_args)
|
||||
options.update(utils.parse_kv(module_args))
|
||||
source = options.get('src', None)
|
||||
dest = options.get('dest', None)
|
||||
source = os.path.expanduser(options.get('src', None))
|
||||
dest = os.path.expanduser(options.get('dest', None))
|
||||
copy = utils.boolean(options.get('copy', 'yes'))
|
||||
|
||||
if source is None or dest is None:
|
||||
|
|
Loading…
Reference in a new issue