From a9139896be73e0356ff0160009a6a9aac2db63f7 Mon Sep 17 00:00:00 2001 From: Ted Ross Date: Mon, 29 Jun 2009 12:22:48 +0000 Subject: 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 --- python/qmf/console.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') 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): -- cgit v1.2.1