From 0214ce7c7584bd27c6e175065e3991d97af05855 Mon Sep 17 00:00:00 2001 From: Filippo Valsorda Date: Mon, 31 Dec 2012 19:21:28 +0100 Subject: Ok, the Escapist test was passing only in my Travis repo, do not ask me why; also, a small bugfix to the latest commit --- youtube_dl/FileDownloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'youtube_dl/FileDownloader.py') 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 []: -- cgit v1.2.3