BrightcoveIE: Use parse_qs to extract the fields of the query (closes #1032)
Add a compat_urlparse to utils.
This commit is contained in:
parent
232eb88bfe
commit
6543f0dca5
2 changed files with 13 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue