Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
Bug 1124443: Fix string formatting error. r=rail
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris AtLee committed Jan 22, 2015
1 parent 0e34e8a commit cd20dd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stage/post_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ def CopyFileToDir(original_file, source_dir, dest_dir, preserve_dirs=False):
# If the file gets deleted by another instance of post_upload
# because there was a name collision this improves the situation
# as to not abort the process but continue with the next file
print "Warning: The file %s has already been unlinked by " + \
"another instance of post_upload.py" % new_file
print "Warning: The file %s has already been unlinked by " % new_file + \
"another instance of post_upload.py"
return

# Try hard linking the file
Expand Down

0 comments on commit cd20dd0

Please sign in to comment.