diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2011-08-18 09:31:36 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2011-08-18 09:31:36 +0200 |
commit | 1cab2c6dcf6fae416e08eea368f296b249b2c4bb (patch) | |
tree | f2c7da7dbc56fe10a6a7df9cea6684e10d587baa /youtube-dl | |
parent | 86e709d3dee1c0ac6f21edbd11ba92c026bef7bb (diff) | |
download | youtube-dl-1cab2c6dcf6fae416e08eea368f296b249b2c4bb.zip youtube-dl-1cab2c6dcf6fae416e08eea368f296b249b2c4bb.tar.gz youtube-dl-1cab2c6dcf6fae416e08eea368f296b249b2c4bb.tar.bz2 |
Fix blip.tv regular expression to not match blipXtv
Diffstat (limited to 'youtube-dl')
-rwxr-xr-x | youtube-dl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2741,7 +2741,7 @@ class FacebookIE(InfoExtractor): class BlipTVIE(InfoExtractor): """Information extractor for blip.tv""" - _VALID_URL = r'^(?:https?://)?(?:\w+\.)?blip.tv(/.+)$' + _VALID_URL = r'^(?:https?://)?(?:\w+\.)?blip\.tv(/.+)$' _URL_EXT = r'^.*\.([a-z0-9]+)$' @staticmethod |