aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/simplecast.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/simplecast.py')
-rw-r--r--hypervideo_dl/extractor/simplecast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hypervideo_dl/extractor/simplecast.py b/hypervideo_dl/extractor/simplecast.py
index 2d0b3c0..857e941 100644
--- a/hypervideo_dl/extractor/simplecast.py
+++ b/hypervideo_dl/extractor/simplecast.py
@@ -122,7 +122,7 @@ class SimplecastEpisodeIE(SimplecastBaseIE):
}
def _real_extract(self, url):
- mobj = re.match(self._VALID_URL, url)
+ mobj = self._match_valid_url(url)
episode = self._call_search_api(
'episode', mobj.group(1), mobj.group(0))
return self._parse_episode(episode)