BrightcoveIE: Use parse_qs to extract the fields of the query (closes #1032)

Add a compat_urlparse to utils.
This commit is contained in:
Jaime Marquínez Ferrándiz 2013-07-12 14:53:28 +02:00
parent 232eb88bfe
commit 6543f0dca5
2 changed files with 13 additions and 7 deletions

View file

@ -35,6 +35,11 @@ try:
except ImportError: # Python 2
from urlparse import urlparse as compat_urllib_parse_urlparse
try:
import urllib.parse as compat_urlparse
except ImportError: # Python 2
import urlparse as compat_urlparse
try:
import http.cookiejar as compat_cookiejar
except ImportError: # Python 2