three small edits
* ask for a --verbose log when reporting bugs in README.md * re-enable Escapist test, seems stable now * check that we are not downloading multiple videos when the template is fixed (NOT a complete fix: not detecting playlists)
This commit is contained in:
parent
b7769a05ec
commit
95fedbf86b
3 changed files with 7 additions and 3 deletions
|
@ -493,6 +493,10 @@ class FileDownloader(object):
|
|||
|
||||
# Extract information from URL and process it
|
||||
videos = ie.extract(url)
|
||||
|
||||
if len(videos) > 1 and self.fixed_template():
|
||||
raise SameFileError(self.params['outtmpl'])
|
||||
|
||||
for video in videos or []:
|
||||
video['extractor'] = ie.IE_NAME
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue