Browse Source

[twitter] Fix short URL extraction

totalwebcasting
Yen Chi Hsuan 9 years ago
parent
commit
c88aec845a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/twitter.py

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

@ -128,7 +128,7 @@ class TwitterIE(InfoExtractor):
title = self._og_search_description(webpage).strip('').replace('\n', ' ')
# strip 'https -_t.co_BJYgOjSeGA' junk from filenames
mobj = re.match(r'“(.*)\s+(http://[^ ]+)”', title)
mobj = re.match(r'“(.*)\s+(https?://[^ ]+)”', title)
title, short_url = mobj.groups()
card_id = self._search_regex(


Loading…
Cancel
Save