summaryrefslogtreecommitdiff
path: root/lib/thandy/ServerCLI.py
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2009-01-22 10:54:34 -0500
committerNick Mathewson <nickm@torproject.org>2009-01-22 10:56:31 -0500
commitb64339f48280872deec7bb980a61e494f6f38c92 (patch)
treefe8262b8a6e7ca572cfe8c5c26720670697d8f8d /lib/thandy/ServerCLI.py
parent2068158fd08ca042b874422ee3826f40803f31d8 (diff)
Fix multiple pychecker-spotted typos.
These are mostly typos in methods that don't get used in the current Thandy, error in error-handling paths, modules we imported unnecessarily, etc.
Diffstat (limited to 'lib/thandy/ServerCLI.py')
-rw-r--r--lib/thandy/ServerCLI.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/thandy/ServerCLI.py b/lib/thandy/ServerCLI.py
index aa39aa1..d9c0f04 100644
--- a/lib/thandy/ServerCLI.py
+++ b/lib/thandy/ServerCLI.py
@@ -144,7 +144,7 @@ def timestamp(args):
try:
bObj = snarfObj(fn)
except (ValueError, OSError, IOError), e:
- print "(Couldn't read bundle-like %s)"%fn
+ print "(Couldn't read bundle-like %s: %s)"%(fn, e)
continue
try:
_, r, _ = thandy.formats.checkSignedObj(bObj)