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:
Filippo Valsorda 2012-12-31 19:09:37 +01:00
parent b7769a05ec
commit 95fedbf86b
3 changed files with 7 additions and 3 deletions

View file

@ -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: