Commit 7d521ee2 by James Cammarata

Allow destination paths in the hg module to include a tilde (~)

Fixes issue #3360 - Inconsistent behavior of the hg module w.r.t. dest path
parent d485abe2
......@@ -211,7 +211,7 @@ def main():
),
)
repo = module.params['repo']
dest = module.params['dest']
dest = os.path.expanduser(module.params['dest'])
revision = module.params['revision']
force = module.params['force']
purge = module.params['purge']
......
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