From 13e6bd9704643993d95c81f22106dae5b59b3084 Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Sat, 10 Oct 2009 17:15:31 +0000 Subject: made addresses not auto-create by default; added error handling and tests for nonexist/invalid addresses; added logging for aborted connections; fixed spurious reattach git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@823890 13f79535-47bb-0310-9956-ffa450edef68 --- python/qpid/ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/qpid/ops.py') diff --git a/python/qpid/ops.py b/python/qpid/ops.py index 422a104466..277d059203 100644 --- a/python/qpid/ops.py +++ b/python/qpid/ops.py @@ -80,7 +80,7 @@ class Compound(object): return "%s(%s)" % (self.__class__.__name__, ", ".join(["%s=%r" % (f.name, getattr(self, f.name)) for f in self.ARGS - if getattr(self, f.name) is not f.default])) + if getattr(self, f.name) != f.default])) class Command(Compound): UNENCODED=[Field("channel", "uint16", 0), -- cgit v1.2.1