From 68bef304c83d4e58f02423abff150e2076b56247 Mon Sep 17 00:00:00 2001 From: muffl0n Date: Wed, 19 Feb 2014 21:41:57 +0100 Subject: [PATCH] already call expanduser in action_plugin --- files/copy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/copy b/files/copy index d961764772a..50ebbb14c04 100644 --- a/files/copy +++ b/files/copy @@ -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)