summaryrefslogtreecommitdiff
path: root/qpid/python/qpid/ops.py
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/python/qpid/ops.py')
-rw-r--r--qpid/python/qpid/ops.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/qpid/python/qpid/ops.py b/qpid/python/qpid/ops.py
index 447f9953df..11e7d11fe9 100644
--- a/qpid/python/qpid/ops.py
+++ b/qpid/python/qpid/ops.py
@@ -74,10 +74,7 @@ class Compound(object):
def dispatch(self, target, *args):
handler = "do_%s" % self.NAME
- if hasattr(target, handler):
- getattr(target, handler)(self, *args)
- else:
- print "UNHANDLED:", target, args
+ getattr(target, handler)(self, *args)
def __repr__(self, extras=()):
return "%s(%s)" % (self.__class__.__name__,