Author: mgoulish
Date: Tue Apr 10 20:03:01 2012
New Revision: 1311962
URL: http://svn.apache.org/viewvc?rev=1311962&view=rev
Log:
QPID-3919
qpid-printevents backtrace under python 2.4 and 2.6
Modified:
qpid/branches/0.16/qpid/extras/qmf/src/py/qmf/console.py
Modified: qpid/branches/0.16/qpid/extras/qmf/src/py/qmf/console.py
URL:
http://svn.apache.org/viewvc/qpid/branches/0.16/qpid/extras/qmf/src/py/qmf/console.py?rev=1311962&r1=1311961&r2=1311962&view=diff
==============================================================================
--- qpid/branches/0.16/qpid/extras/qmf/src/py/qmf/console.py (original)
+++ qpid/branches/0.16/qpid/extras/qmf/src/py/qmf/console.py Tue Apr 10
20:03:01 2012
@@ -3948,7 +3948,7 @@ class Event:
return "<uninterpretable>"
out = strftime("%c", gmtime(self.timestamp / 1000000000))
out += " " + self._sevName() + " " + self.classKey.getPackageName() + ":"
+ self.classKey.getClassName()
- out += " broker=" + self.broker.getUrl()
+ out += " broker=" + str(self.broker.getUrl())
for arg in self.schema.arguments:
disp = self.session._displayValue(self.arguments[arg.name],
arg.type).encode("utf8")
if " " in disp:
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]