Skip to content

Commit

Permalink
Fix type error(s3tools#1313)
Browse files Browse the repository at this point in the history
  • Loading branch information
xcir authored Mar 14, 2023
1 parent 6f3e1ba commit 928ee2c
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 928ee2c

Please sign in to comment.