Преглед изворни кода

Make "requested format not available" expected (#1655)

Philipp Hagemeister пре 12 година
родитељ
комит
78a3a9f89e
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      youtube_dl/YoutubeDL.py

+ 2 - 1
youtube_dl/YoutubeDL.py

@@ -524,7 +524,8 @@ class YoutubeDL(object):
                     formats_to_download = [selected_format]
                     break
         if not formats_to_download:
-            raise ExtractorError(u'requested format not available')
+            raise ExtractorError(u'requested format not available',
+                                 expected=True)
 
         if download:
             if len(formats_to_download) > 1: