Minor tweak to rsync_path construction in synchronize module

Fixes #7182
This commit is contained in:
James Cammarata 2014-04-29 15:46:48 -05:00
parent de3f7e4225
commit b53bf7c8b1

View file

@ -300,7 +300,7 @@ def main():
'StrictHostKeyChecking=no') # need ssh param
if rsync_path:
cmd = cmd + " --rsync-path '%s'" %(rsync_path)
cmd = cmd + " --rsync-path=%s" % (rsync_path)
if rsync_opts:
cmd = cmd + " " + " ".join(rsync_opts)
changed_marker = '<<CHANGED>>'