urlparse.parse_qsl is not available on py2.5

This commit is contained in:
Ask Solem 2011-09-10 12:04:20 +01:00
parent 5568a6b73c
commit 0725768dde
1 changed files with 5 additions and 1 deletions

View File

@ -15,7 +15,11 @@ import socket
from copy import copy
from itertools import count
from Queue import Empty
from urlparse import urlparse, parse_qsl
from urlparse import urlparse
try:
from urlparse import parse_qsl
except ImportError:
from cgi import parse_qsl
from kombu import exceptions
from kombu.transport import get_transport_cls