summaryrefslogtreecommitdiff
path: root/kombu/transport/SQS.py
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2012-11-08 20:20:41 +0000
committerAsk Solem <ask@celeryproject.org>2012-11-08 20:20:41 +0000
commit7f9b38ff8bd59540f5304fbe391fd0987b48c805 (patch)
tree63090b99d6372d6dbff13e4a75c724f9f6e0f4ed /kombu/transport/SQS.py
parent3405974b5f9cac6fd0f664cca52f7b1af8e47fcf (diff)
downloadkombu-7f9b38ff8bd59540f5304fbe391fd0987b48c805.tar.gz
[kombu3] No longer supports Python 2.5
Diffstat (limited to 'kombu/transport/SQS.py')
-rw-r--r--kombu/transport/SQS.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kombu/transport/SQS.py b/kombu/transport/SQS.py
index 185791e5..b2d6edab 100644
--- a/kombu/transport/SQS.py
+++ b/kombu/transport/SQS.py
@@ -274,7 +274,7 @@ class Channel(virtual.Channel):
if conn:
try:
conn.close()
- except AttributeError, exc: # FIXME ???
+ except AttributeError as exc: # FIXME ???
if "can't set attribute" not in str(exc):
raise