Commit 8f1de574 authored by Tres Seaver's avatar Tres Seaver Committed by GitHub

Merge pull request #21 from navytux/parse_qsl

Fix PendingDeprecationWarning about cgi.parse_qsl
parents c59d6660 84fb4a89
try:
from urllib.parse import parse_qsl
except ImportError: #pragma NO COVER
from cgi import parse_qsl
from urlparse import parse_qsl
try:
from urllib.parse import quote
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment