[testurl] Fix case when only one IE matches

This commit is contained in:
Philipp Hagemeister 2014-02-25 10:43:34 +01:00
parent 3e668e05be
commit 4d756a9cc0
1 changed files with 2 additions and 0 deletions

View File

@ -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