Commit a2ca0441 by Mikhail Emelchenkov

Fixed incorrect handling of paths contaiin whitespaces

parent 41169666
...@@ -221,8 +221,8 @@ def main(): ...@@ -221,8 +221,8 @@ def main():
supports_check_mode = True supports_check_mode = True
) )
source = module.params['src'] source = '"' + module.params['src'] + '"'
dest = module.params['dest'] dest = '"' + module.params['dest'] + '"'
dest_port = module.params['dest_port'] dest_port = module.params['dest_port']
delete = module.params['delete'] delete = module.params['delete']
private_key = module.params['private_key'] private_key = module.params['private_key']
......
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