Subversion dest should allow ~ expansion
Used os.path.expanduser on dest to allow e.g. ~/svn/repo as a destination
This commit is contained in:
parent
2c2113430f
commit
42ed10820b
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue