[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:
parent
112b72511e
commit
4862d5955b
|
@ -113,7 +113,7 @@ try:
|
||||||
t.close()
|
t.close()
|
||||||
|
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
print '*** Caught exception: ' + str(e.__class__) + ': ' + str(e)
|
print '*** Caught exception: %s: %s' % (e.__class__, e)
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
try:
|
try:
|
||||||
t.close()
|
t.close()
|
||||||
|
|
Loading…
Reference in New Issue