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
reviewable/pr18780/r1
James Cammarata 11 years ago
parent fea38f44ac
commit e5822b5342

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