aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2011-08-18 09:31:36 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2011-08-18 09:31:36 +0200
commit1cab2c6dcf6fae416e08eea368f296b249b2c4bb (patch)
treef2c7da7dbc56fe10a6a7df9cea6684e10d587baa
parent86e709d3dee1c0ac6f21edbd11ba92c026bef7bb (diff)
downloadyoutube-dl-1cab2c6dcf6fae416e08eea368f296b249b2c4bb.tar.xz
Fix blip.tv regular expression to not match blipXtv
-rwxr-xr-xyoutube-dl2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl
index 2a1908d3d..6a4209222 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -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