summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2009-06-29 12:22:48 +0000
committerTed Ross <tross@apache.org>2009-06-29 12:22:48 +0000
commita9139896be73e0356ff0160009a6a9aac2db63f7 (patch)
tree30c53f333da92af062b7752f49cf29ff2967a2db /python
parent959c1e928234267d5c5d47b403f3986c48c2acdc (diff)
downloadqpid-python-a9139896be73e0356ff0160009a6a9aac2db63f7.tar.gz
Fixed the formatting of error messages written in the connection exception handler.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@789305 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python')
-rw-r--r--python/qmf/console.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/qmf/console.py b/python/qmf/console.py
index 828023f132..c3ef0a1a50 100644
--- a/python/qmf/console.py
+++ b/python/qmf/console.py
@@ -1693,10 +1693,10 @@ class Broker:
self.error = "Socket Error %s - %s" % (e.__class__.__name__, e)
raise
except Closed, e:
- self.error = "Connect Failed %d - %s" % (e.__class__.__name__, e)
+ self.error = "Connect Failed %s - %s" % (e.__class__.__name__, e)
raise
except ConnectionFailed, e:
- self.error = "Connect Failed %d - %s" % (e.__class__.__name__, e)
+ self.error = "Connect Failed %s - %s" % (e.__class__.__name__, e)
raise
def _updateAgent(self, obj):