Browse Source

Improve error message on invalid output template and abort execution

rtmp_test
Ricardo Garcia 14 years ago
parent
commit
38ed13444a
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube-dl

+ 2
- 1
youtube-dl View File

@ -404,7 +404,8 @@ class FileDownloader(object):
template_dict['ord'] = unicode('%05d' % self._num_downloads)
filename = self.params['outtmpl'] % template_dict
except (ValueError, KeyError), err:
self.trouble('ERROR: invalid output template or system charset: %s' % str(err))
self.trouble(u'ERROR: invalid system charset or erroneous output template')
return
if self.params.get('nooverwrites', False) and os.path.exists(filename):
self.to_stderr(u'WARNING: file exists: %s; skipping' % filename)
return


Loading…
Cancel
Save