Remove expanduser usage because of path type

With the addition of the 'path' type, the usage of expanduser
is redundant. This patch  removes that extra usage.
reviewable/pr21345/r1
Tim Rupp 9 years ago committed by Brian Coca
parent 0fcc6edf2b
commit 1fb53e6aaf

@ -781,8 +781,8 @@ def main():
supports_check_mode = True, supports_check_mode = True,
) )
src = os.path.expanduser(module.params['src']) src = module.params['src']
dest = os.path.expanduser(module.params['dest']) dest = module.params['dest']
copy = module.params['copy'] copy = module.params['copy']
remote_src = module.params['remote_src'] remote_src = module.params['remote_src']
file_args = module.load_file_common_arguments(module.params) file_args = module.load_file_common_arguments(module.params)

Loading…
Cancel
Save