aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/imgur.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-02-20 02:52:03 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-02-20 02:52:03 +0100
commit5e9a033e6e8054605bb87c8448f95a5bb86a71bb (patch)
treeb532cbc1a27ff6e4282028282024dc8b27aa4699 /youtube_dl/extractor/imgur.py
parenta21420389edf665bfeb9610888d2d39dae374945 (diff)
downloadyoutube-dl-5e9a033e6e8054605bb87c8448f95a5bb86a71bb.zip
youtube-dl-5e9a033e6e8054605bb87c8448f95a5bb86a71bb.tar.gz
youtube-dl-5e9a033e6e8054605bb87c8448f95a5bb86a71bb.tar.bz2
[imgur] Allow alternative values
Every now and then, imgur.com goes crazy and gives us a generic title and description (otherwise it looks all fine though). Simply update the test case to allow for that craziness.
Diffstat (limited to 'youtube_dl/extractor/imgur.py')
-rw-r--r--youtube_dl/extractor/imgur.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/youtube_dl/extractor/imgur.py b/youtube_dl/extractor/imgur.py
index b16c7ae..fe5d95e 100644
--- a/youtube_dl/extractor/imgur.py
+++ b/youtube_dl/extractor/imgur.py
@@ -19,16 +19,16 @@ class ImgurIE(InfoExtractor):
'info_dict': {
'id': 'A61SaA1',
'ext': 'mp4',
- 'title': 'MRW gifv is up and running without any bugs',
- 'description': 'The Internet\'s visual storytelling community. Explore, share, and discuss the best visual stories the Internet has to offer.',
+ 'title': 're:Imgur GIF$|MRW gifv is up and running without any bugs$',
+ 'description': 're:The origin of the Internet\'s most viral images$|The Internet\'s visual storytelling community\. Explore, share, and discuss the best visual stories the Internet has to offer\.$',
},
}, {
'url': 'https://imgur.com/A61SaA1',
'info_dict': {
'id': 'A61SaA1',
'ext': 'mp4',
- 'title': 'MRW gifv is up and running without any bugs',
- 'description': 'The Internet\'s visual storytelling community. Explore, share, and discuss the best visual stories the Internet has to offer.',
+ 'title': 're:Imgur GIF$|MRW gifv is up and running without any bugs$',
+ 'description': 're:The origin of the Internet\'s most viral images$|The Internet\'s visual storytelling community\. Explore, share, and discuss the best visual stories the Internet has to offer\.$',
},
}]