Commit 8c028c4c by Michael DeHaan

Merge pull request #988 from willthames/svn-expand-path

Subversion dest should allow ~ expansion
parents c04f00e3 d4c4a518
...@@ -99,7 +99,7 @@ def main(): ...@@ -99,7 +99,7 @@ def main():
) )
) )
dest = module.params['dest'] dest = os.path.expanduser(module.params['dest'])
repo = module.params['repo'] repo = module.params['repo']
revision = module.params['revision'] revision = module.params['revision']
force = module.boolean(module.params['force']) force = module.boolean(module.params['force'])
......
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