Commit 32a2636d by James Cammarata

Add expanduser calls on src/dest in the module too

parent 21b2f339
......@@ -113,8 +113,8 @@ def main():
add_file_common_args=True,
)
src = module.params['src']
dest = module.params['dest']
src = os.path.expanduser(module.params['src'])
dest = os.path.expanduser(module.params['dest'])
backup = module.params['backup']
force = module.params['force']
original_basename = module.params.get('original_basename',None)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment