mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-06-30 11:02:51 -05:00
Ok, the Escapist test was passing only in my Travis repo, do not ask me why; also, a small bugfix to the latest commit
This commit is contained in:
@ -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 []:
|
||||
|
Reference in New Issue
Block a user