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
commit4a5c3cb9f9f079d4121bddc4f936fb4ee5e81d2a (patch)
treef7842bcf839a07314cadc819ce0c88bbd0956577 /python/examples
parent0e0b556d5f7bca1464384f6f7b8042a08222a4d3 (diff)
downloadqpid-python-4a5c3cb9f9f079d4121bddc4f936fb4ee5e81d2a.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