aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-07-07 17:13:26 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-07-07 17:13:26 +0200
commit897f36d179978b4cb31544c065c6768805e56ae6 (patch)
treead19c301f91c0f61a4c9e5eeaf4e32b0d7f06a90 /youtube_dl
parent94c3637f6de8109fd8b9a3245c29e28156211461 (diff)
downloadyoutube-dl-897f36d179978b4cb31544c065c6768805e56ae6.tar.xz
[youtube:subscriptions] Use colon for differentiation of shortcuts
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/youtube.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 7ca6244e9..7a2a8a4f8 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -870,14 +870,14 @@ class YoutubeShowIE(InfoExtractor):
class YoutubeSubscriptionsIE(YoutubeIE):
"""It's a subclass of YoutubeIE because we need to login"""
- IE_DESC = u'YouTube.com subscriptions feed, "ytsubscriptions" keyword(requires authentication)'
- _VALID_URL = r'https?://www\.youtube\.com/feed/subscriptions|ytsubscriptions'
+ IE_DESC = u'YouTube.com subscriptions feed, "ytsubs" keyword(requires authentication)'
+ _VALID_URL = r'https?://www\.youtube\.com/feed/subscriptions|:ytsubs(?:criptions)?'
IE_NAME = u'youtube:subscriptions'
_FEED_TEMPLATE = 'http://www.youtube.com/feed_ajax?action_load_system_feed=1&feed_name=subscriptions&paging=%s'
_PAGING_STEP = 30
+ # Overwrite YoutubeIE properties we don't want
_TESTS = []
-
@classmethod
def suitable(cls, url):
return re.match(cls._VALID_URL, url) is not None