Merge pull request #3744 from jimi1283/issue_3360

Allow destination paths in the hg module to include a tilde (~)
This commit is contained in:
Michael DeHaan 2013-08-03 10:29:03 -07:00
commit b31cef48e9

View file

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