Merge pull request #3744 from jimi1283/issue_3360

Allow destination paths in the hg module to include a tilde (~)
reviewable/pr18780/r1
Michael DeHaan 11 years ago
commit ac5fb3ffda

@ -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']

Loading…
Cancel
Save