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

Subversion dest should allow ~ expansion
This commit is contained in:
Michael DeHaan 2012-09-03 17:33:01 -07:00
commit 8c028c4cfa

View file

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