diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-11-20 09:45:22 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-11-20 09:45:29 +0100 |
commit | 0190eecc00c45b26eb5ef5444181cd996b139f18 (patch) | |
tree | 6e0d0e7fdb491d64cc080b83398764c16992a008 /youtube_dl | |
parent | ca872a4c0b5a926be9dccec6dc43ebb5b8a6abb7 (diff) |
[nhl] Make NHLVideocenter IE_DESC fit with other descriptions
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/nhl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/nhl.py b/youtube_dl/extractor/nhl.py index 224f56ac8..458fe4063 100644 --- a/youtube_dl/extractor/nhl.py +++ b/youtube_dl/extractor/nhl.py @@ -72,7 +72,7 @@ class NHLIE(NHLBaseInfoExtractor): class NHLVideocenterIE(NHLBaseInfoExtractor): IE_NAME = u'nhl.com:videocenter' - IE_DESC = u'Download the first 12 videos from a videocenter category' + IE_DESC = u'NHL videocenter category' _VALID_URL = r'https?://video\.(?P<team>[^.]*)\.nhl\.com/videocenter/(console\?.*?catid=(?P<catid>[^&]+))?' @classmethod |