Improve error message regarding output templates and charsets

This commit is contained in:
Ricardo Garcia 2008-07-25 23:43:00 +02:00
parent f807dc157e
commit b1a1f8ea8f
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ class FileDownloader(object):
filename = self._params['outtmpl'] % result
self.report_destination(filename)
except (ValueError, KeyError), err:
retcode = self.trouble('ERROR: invalid output template: %s' % str(err))
retcode = self.trouble('ERROR: invalid output template or system charset: %s' % str(err))
continue
try:
self.pmkdir(filename)