diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-07-12 14:53:28 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-07-12 14:53:28 +0200 |
commit | 6543f0dca5e04530450fac5a64efa5d9ee294b1b (patch) | |
tree | 76680eefd70e8dda9a0202e9c4c49f698a98d3dc /youtube_dl/utils.py | |
parent | 232eb88bfefa0bc6d9ba8df608de62704dbf217c (diff) |
BrightcoveIE: Use parse_qs to extract the fields of the query (closes #1032)
Add a compat_urlparse to utils.
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 31db1bf8c..532ca585d 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -36,6 +36,11 @@ 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 import cookielib as compat_cookiejar |