aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/reddit.py
diff options
context:
space:
mode:
authorllyyr <gopalprasadgd@gmail.com>2018-05-10 21:47:23 +0530
committerSergey M <dstftw@gmail.com>2018-05-10 23:17:23 +0700
commitdbd5c502ead468771d45c7893dd5dd14cf99a276 (patch)
tree40806ef5731556e10c08c5f3ee5e07b9805af52e /youtube_dl/extractor/reddit.py
parentbc5e4aa57e92201610f9ab79b10a3ae3b316fc3b (diff)
downloadyoutube-dl-dbd5c502ead468771d45c7893dd5dd14cf99a276.tar.xz
[redditr] Relax _VALID_URL (closes #16426)
Diffstat (limited to 'youtube_dl/extractor/reddit.py')
-rw-r--r--youtube_dl/extractor/reddit.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/reddit.py b/youtube_dl/extractor/reddit.py
index 8372925be..7b0aa6232 100644
--- a/youtube_dl/extractor/reddit.py
+++ b/youtube_dl/extractor/reddit.py
@@ -47,7 +47,7 @@ class RedditIE(InfoExtractor):
class RedditRIE(InfoExtractor):
- _VALID_URL = r'(?P<url>https?://(?:(?:www|old)\.)?reddit\.com/r/[^/]+/comments/(?P<id>[^/?#&]+))'
+ _VALID_URL = r'(?P<url>https?://(?:[^/]+\.)?reddit\.com/r/[^/]+/comments/(?P<id>[^/?#&]+))'
_TESTS = [{
'url': 'https://www.reddit.com/r/videos/comments/6rrwyj/that_small_heart_attack/',
'info_dict': {
@@ -86,6 +86,10 @@ class RedditRIE(InfoExtractor):
# youtube
'url': 'https://www.reddit.com/r/videos/comments/6t75wq/southern_man_tries_to_speak_without_an_accent/',
'only_matching': True,
+ }, {
+ # reddit video @ nm reddit
+ 'url': 'https://nm.reddit.com/r/Cricket/comments/8idvby/lousy_cameraman_finds_himself_in_cairns_line_of/',
+ 'only_matching': True,
}]
def _real_extract(self, url):