summaryrefslogtreecommitdiff
path: root/python/examples
diff options
context:
space:
mode:
authorJustin Ross <jross@apache.org>2013-04-18 14:36:04 +0000
committerJustin Ross <jross@apache.org>2013-04-18 14:36:04 +0000
commit9cc8705bd3f4a222dd4209b768157ea00527c14f (patch)
treef7842bcf839a07314cadc819ce0c88bbd0956577 /python/examples
parentd86f160d4b897cb65c3353543889c11ae1d993e3 (diff)
downloadqpid-python-9cc8705bd3f4a222dd4209b768157ea00527c14f.tar.gz
QPID-4750: Fix unhandled exception; patch from Ernie Allen
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1469345 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/examples')
-rwxr-xr-xpython/examples/api/server2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/examples/api/server b/python/examples/api/server
index 3b9a3560da..78d812bfd2 100755
--- a/python/examples/api/server
+++ b/python/examples/api/server
@@ -87,7 +87,7 @@ try:
if snd is not None:
snd.close()
ssn.acknowledge()
-except ReceiveError, e:
+except ReceiverError, e:
print e
except KeyboardInterrupt:
pass