1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fixed incorrect handling of paths contaiin whitespaces

This commit is contained in:
Mikhail Emelchenkov 2014-05-13 17:05:44 +04:00
parent 41169666b0
commit a2ca0441ae

View file

@ -221,8 +221,8 @@ def main():
supports_check_mode = True
)
source = module.params['src']
dest = module.params['dest']
source = '"' + module.params['src'] + '"'
dest = '"' + module.params['dest'] + '"'
dest_port = module.params['dest_port']
delete = module.params['delete']
private_key = module.params['private_key']