Commit 80524a8f by James Cammarata

Merge pull request #4165 from jerm/devel

dest in s3 module does not work with ~username expansion for home directories
parents 484297cf f56b3fba
......@@ -261,7 +261,7 @@ def main():
bucket = module.params.get('bucket')
obj = module.params.get('object')
src = module.params.get('src')
dest = module.params.get('dest')
dest = os.path.expanduser(module.params.get('dest'))
mode = module.params.get('mode')
expiry = int(module.params['expiry'])
s3_url = module.params.get('s3_url')
......
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