diff options
| -rw-r--r-- | youtube_dl/extractor/common.py | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index db1ca9edb..f7478d459 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -466,6 +466,9 @@ class InfoExtractor(object):          return RATING_TABLE.get(rating.lower(), None)      def _sort_formats(self, formats): +        if not formats: +            raise ExtractorError(u'No video formats found') +          def _formats_key(f):              # TODO remove the following workaround              from ..utils import determine_ext | 
