diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-12-22 07:43:54 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-12-22 07:43:54 +0100 |
commit | 1b969041d701e2fb7ff106476b91084dbc67332a (patch) | |
tree | d3fa1363181c7464f71d13a79a35f2f97b51f427 | |
parent | e302f9ce324c13e24a717027eaa7a918658b4e8a (diff) |
[blinkx] Support mobile URLs (Closes #2022)
-rw-r--r-- | youtube_dl/extractor/blinkx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/blinkx.py b/youtube_dl/extractor/blinkx.py index e118f2e9f..144ce64cc 100644 --- a/youtube_dl/extractor/blinkx.py +++ b/youtube_dl/extractor/blinkx.py @@ -9,7 +9,7 @@ from ..utils import ( class BlinkxIE(InfoExtractor): - _VALID_URL = r'^(?:https?://(?:www\.)blinkx\.com/ce/|blinkx:)(?P<id>[^?]+)' + _VALID_URL = r'^(?:https?://(?:www\.)blinkx\.com/#?ce/|blinkx:)(?P<id>[^?]+)' _IE_NAME = u'blinkx' _TEST = { |