Browse Source

Merge remote-tracking branch 'upstream/master'

rtmp_test
Allan Zhou 11 years ago
parent
commit
95fdc7d69c
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