[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-57]

simplify a line of debug output in demo_simple that bothered me one day
This commit is contained in:
Robey Pointer 2005-09-21 22:34:39 +00:00
parent 112b72511e
commit 4862d5955b
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ try:
t.close()
except Exception, e:
print '*** Caught exception: ' + str(e.__class__) + ': ' + str(e)
print '*** Caught exception: %s: %s' % (e.__class__, e)
traceback.print_exc()
try:
t.close()