Skip to content

Commit

Permalink
Merge pull request #1314 from xcir/fix/issue1313
Browse files Browse the repository at this point in the history
Fix type error(#1313)
  • Loading branch information
fviard authored Mar 14, 2023
2 parents 6f3e1ba + 928ee2c commit 2db79e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s3cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2009,7 +2009,7 @@ def cmd_sync_local2remote(args):
for key in update_list:
output(u"upload: '%s' -> '%s'" % (update_list[key]['full_name'], update_list[key]['remote_uri']))
for relative_file, item in copy_pairs.items():
output(u"remote copy: '%s' -> '%s'" % (relative_file['copy_src'], relative_file))
output(u"remote copy: '%s' -> '%s'" % (item['copy_src'], relative_file))
if cfg.delete_removed:
for key in remote_list:
output(u"delete: '%s'" % remote_list[key]['object_uri_str'])
Expand Down

0 comments on commit 2db79e5

Please sign in to comment.