diff options
| author | Ted Ross <tross@apache.org> | 2009-06-29 12:22:48 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2009-06-29 12:22:48 +0000 |
| commit | 4df1f48f729a909cb69d1bd1ef094cca3dd95994 (patch) | |
| tree | 1ec2d504827efb6bb1a5c3cf5cf0651f418835aa /qpid/python/qmf | |
| parent | 9c9d40ec1d1536b504d54f3bde57999616ed998b (diff) | |
| download | qpid-python-4df1f48f729a909cb69d1bd1ef094cca3dd95994.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@789305 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/qmf')
| -rw-r--r-- | qpid/python/qmf/console.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/python/qmf/console.py b/qpid/python/qmf/console.py index 828023f132..c3ef0a1a50 100644 --- a/qpid/python/qmf/console.py +++ b/qpid/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): |
