already call expanduser in action_plugin
This commit is contained in:
parent
62f8ebe51e
commit
68bef304c8
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue