about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-10-09 23:50:38 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-10-09 23:50:38 +0200
commit57da92b7df21137fc7c02d467365ae2189e0baed (patch)
tree6cb10ce3e3c70e7eaadfdd2fdeef72cade6dab9f
parentdf4f632dbc6c127c749b8c2fc603a3ae4f175be8 (diff)
downloadyoutube-dl-57da92b7df21137fc7c02d467365ae2189e0baed.tar.gz
youtube-dl-57da92b7df21137fc7c02d467365ae2189e0baed.tar.xz
youtube-dl-57da92b7df21137fc7c02d467365ae2189e0baed.zip
[youtube] Do not recognize attribution link as user (Fixes #1573)
-rw-r--r--youtube_dl/extractor/youtube.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index a7c514513..8222a880f 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -1635,7 +1635,7 @@ class YoutubeChannelIE(InfoExtractor):
 
 class YoutubeUserIE(InfoExtractor):
     IE_DESC = u'YouTube.com user videos (URL or "ytuser" keyword)'
-    _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/(?:user/)?(?!watch(?:$|[^a-z_A-Z0-9-])))|ytuser:)(?!feed/)([A-Za-z0-9_-]+)'
+    _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/(?:user/)?(?!(?:attribution_link|watch)(?:$|[^a-z_A-Z0-9-])))|ytuser:)(?!feed/)([A-Za-z0-9_-]+)'
     _TEMPLATE_URL = 'http://gdata.youtube.com/feeds/api/users/%s'
     _GDATA_PAGE_SIZE = 50
     _GDATA_URL = 'http://gdata.youtube.com/feeds/api/users/%s/uploads?max-results=%d&start-index=%d&alt=json'