Commit b31cef48 by Michael DeHaan

Merge pull request #3744 from jimi1283/issue_3360

Allow destination paths in the hg module to include a tilde (~)
parents 82c80697 7d521ee2
...@@ -211,7 +211,7 @@ def main(): ...@@ -211,7 +211,7 @@ def main():
), ),
) )
repo = module.params['repo'] repo = module.params['repo']
dest = module.params['dest'] dest = os.path.expanduser(module.params['dest'])
revision = module.params['revision'] revision = module.params['revision']
force = module.params['force'] force = module.params['force']
purge = module.params['purge'] 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