diff options
author | Ted Ross <tross@apache.org> | 2008-12-15 18:09:59 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2008-12-15 18:09:59 +0000 |
commit | 4d5f35f824f95835f6d3d30fef88fd8a68e7a14d (patch) | |
tree | c5a21af95d9e1aa28cd3776a3e48b48c54a5093a /python/qmf/console.py | |
parent | e3bf7a73d33815c048ef70f4614abfc26882804c (diff) | |
download | qpid-python-4d5f35f824f95835f6d3d30fef88fd8a68e7a14d.tar.gz |
Suppress spurious object updates when "rcvObjects" is false.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@726750 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qmf/console.py')
-rw-r--r-- | python/qmf/console.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qmf/console.py b/python/qmf/console.py index 739ccb6b6b..bba0386d6a 100644 --- a/python/qmf/console.py +++ b/python/qmf/console.py @@ -577,7 +577,7 @@ class Session: finally: self.cv.release() - if self.console != None: + if self.console and self.rcvObjects: if prop: self.console.objectProps(broker, object) if stat: |