Skip to content

Commit

Permalink
Fix broken format string
Browse files Browse the repository at this point in the history
  • Loading branch information
robbywalker committed Nov 2, 2011
1 parent fede432 commit b62cd45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/upload.py
Expand Up @@ -154,7 +154,7 @@ def deleteLock(lock):
os.unlink(os.path.join(lock, 'pid'))
except (OSError, IOError):
print >> sys.stderr, 'Tried to delete nonexistent pid file %r' % os.path.join(lock, 'pid')
print >> sys.stderr, 'Lock directory %r existence status: %r' % os.path.exists(lock)
print >> sys.stderr, 'Lock directory %r existence status: %r' % (lock, os.path.exists(lock))
if os.path.exists(lock):
print >> sys.stderr, 'Lock directory contents: %r' % os.listdir(lock)
try:
Expand Down

0 comments on commit b62cd45

Please sign in to comment.