Browse Source

[dramafever:series] Fix _VALID_URL (Closes #5973)

totalwebcasting
Sergey M․ 9 years ago
parent
commit
70a2002399
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/dramafever.py

+ 1
- 1
youtube_dl/extractor/dramafever.py View File

@ -99,7 +99,7 @@ class DramaFeverIE(InfoExtractor):
class DramaFeverSeriesIE(InfoExtractor):
IE_NAME = 'dramafever:series'
_VALID_URL = r'https?://(?:www\.)?dramafever\.com/drama/(?P<id>[0-9]+)(?:/(?:(?!\d).+)?)?$'
_VALID_URL = r'https?://(?:www\.)?dramafever\.com/drama/(?P<id>[0-9]+)(?:/(?:(?!\d+(?:/|$)).+)?)?$'
_TESTS = [{
'url': 'http://www.dramafever.com/drama/4512/Cooking_with_Shin/',
'info_dict': {


Loading…
Cancel
Save