diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-02-17 14:56:21 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-02-17 14:56:21 +0100 |
commit | 2eb5d315d49b51f3594cda27f44773e826c6cccb (patch) | |
tree | fa0e5a7e3c185e790dab228b6422f191d5008a9c /youtube_dl | |
parent | ad5976b4d90da6921a5e72603f3b73c4597e6138 (diff) |
[youtube] Match more truncated URLs (Closes #2402)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/youtube.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index a81036843..059cf8cbd 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -1815,7 +1815,7 @@ class YoutubeTruncatedURLIE(InfoExtractor): IE_NAME = 'youtube:truncated_url' IE_DESC = False # Do not list _VALID_URL = r'''(?x) - (?:https?://)?[^/]+/watch\?feature=[a-z_]+$| + (?:https?://)?[^/]+/watch\?(?:feature=[a-z_]+)?$| (?:https?://)?(?:www\.)?youtube\.com/attribution_link\?a=[^&]+$ ''' |