already call expanduser in action_plugin

This commit is contained in:
muffl0n 2014-02-19 21:41:57 +01:00
parent 62f8ebe51e
commit 68bef304c8

View file

@ -113,8 +113,8 @@ def main():
add_file_common_args=True,
)
src = os.path.expanduser(module.params['src'])
dest = os.path.expanduser(module.params['dest'])
src = module.params['src']
dest = module.params['dest']
backup = module.params['backup']
force = module.params['force']
original_basename = module.params.get('original_basename',None)