diff options
Diffstat (limited to 'lldb/utils/sync-source/lib/transfer/rsync.py')
-rw-r--r-- | lldb/utils/sync-source/lib/transfer/rsync.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/utils/sync-source/lib/transfer/rsync.py b/lldb/utils/sync-source/lib/transfer/rsync.py index 8269fada676..b90d108fca4 100644 --- a/lldb/utils/sync-source/lib/transfer/rsync.py +++ b/lldb/utils/sync-source/lib/transfer/rsync.py @@ -54,7 +54,7 @@ class RsyncOverSsh(transfer.protocol.Protocol): for spec in transfer_specs: cmd = self.build_rsync_command(spec, dry_run) if self.options.verbose: - print "executing the following command:\n{}".format(cmd) + print("executing the following command:\n{}".format(cmd)) result = subprocess.call( cmd, stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr) if result != 0: |