Merge pull request #7377 from mikhailguru/devel

Fixed handling of paths containing whitespaces in the synchronize module
pull/7619/merge
James Cammarata 11 years ago
commit 8e3b512293

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

Loading…
Cancel
Save