aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/testurl.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-02-25 10:43:34 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-02-25 10:43:34 +0100
commit4d756a9cc01ed2e85b2ea540b70c78dee10fc118 (patch)
tree0761fa8dd61e84a769d4070c576e09dfd287153b /youtube_dl/extractor/testurl.py
parent3e668e05bee6889cd07b853fed2a67d0bf8a700f (diff)
downloadyoutube-dl-4d756a9cc01ed2e85b2ea540b70c78dee10fc118.zip
youtube-dl-4d756a9cc01ed2e85b2ea540b70c78dee10fc118.tar.gz
youtube-dl-4d756a9cc01ed2e85b2ea540b70c78dee10fc118.tar.bz2
[testurl] Fix case when only one IE matches
Diffstat (limited to 'youtube_dl/extractor/testurl.py')
-rw-r--r--youtube_dl/extractor/testurl.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/testurl.py b/youtube_dl/extractor/testurl.py
index bdc6e20..c7d5593 100644
--- a/youtube_dl/extractor/testurl.py
+++ b/youtube_dl/extractor/testurl.py
@@ -39,6 +39,8 @@ class TestURLIE(InfoExtractor):
('Found multiple matching extractors: %s' %
' '.join(ie.IE_NAME for ie in matching_extractors)),
expected=True)
+ else:
+ extractor = matching_extractors[0]
num_str = mobj.group('num')
num = int(num_str) if num_str else 0