Subversion dest should allow ~ expansion

Used os.path.expanduser on dest to allow e.g. ~/svn/repo as
a destination
reviewable/pr18780/r1
willthames 12 years ago
parent 2c2113430f
commit 42ed10820b

@ -99,7 +99,7 @@ def main():
)
)
dest = module.params['dest']
dest = os.path.expanduser(module.params['dest'])
repo = module.params['repo']
revision = module.params['revision']
force = module.boolean(module.params['force'])

Loading…
Cancel
Save