diff options
Diffstat (limited to 'youtube_dl/FileDownloader.py')
-rw-r--r-- | youtube_dl/FileDownloader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py index 53c68237b..ebc2552df 100644 --- a/youtube_dl/FileDownloader.py +++ b/youtube_dl/FileDownloader.py @@ -494,7 +494,7 @@ class FileDownloader(object): # Extract information from URL and process it videos = ie.extract(url) - if len(videos) > 1 and self.fixed_template(): + if len(videos or []) > 1 and self.fixed_template(): raise SameFileError(self.params['outtmpl']) for video in videos or []: |