Browse Source

Fix regex error when only subtitled video is available on arte.

rtmp_test
Dominik 11 years ago
parent
commit
e3f4593e76
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/arte.py

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

@ -98,7 +98,7 @@ class ArteTvIE(InfoExtractor):
l = 'F'
elif lang == 'de':
l = 'A'
regexes = [r'VO?%s' % l, r'V%s-ST.' % l]
regexes = [r'VO?%s' % l, r'VO?.-ST%s' % l]
return any(re.match(r, f['versionCode']) for r in regexes)
# Some formats may not be in the same language as the url
formats = filter(_match_lang, formats)


Loading…
Cancel
Save