forked from orbit-oss/flask
Better wording
This commit is contained in:
parent
5e336f9025
commit
17a836d49c
1 changed files with 5 additions and 5 deletions
|
|
@ -20,13 +20,13 @@ class DebugFilesKeyError(KeyError, AssertionError):
|
||||||
buf = ['You tried to access the file "%s" in the request.files '
|
buf = ['You tried to access the file "%s" in the request.files '
|
||||||
'dictionary but it does not exist. The mimetype for the request '
|
'dictionary but it does not exist. The mimetype for the request '
|
||||||
'is "%s" instead of "multipart/form-data" which means that no '
|
'is "%s" instead of "multipart/form-data" which means that no '
|
||||||
'files were transmitted. To fix this error you most likely have '
|
'file contents were transmitted. To fix this error you should '
|
||||||
'to provide enctype="multipart/form-data" in your form.' %
|
'provide enctype="multipart/form-data" in your form.' %
|
||||||
(key, request.mimetype)]
|
(key, request.mimetype)]
|
||||||
if form_matches:
|
if form_matches:
|
||||||
buf.append('\n\nThe browser instead most likely submitted the '
|
buf.append('\n\nThe browser instead some file names. This was '
|
||||||
'filenames in the form. This was submitted: %s' %
|
'submitted: %s' % ', '.join('"%s"' % x
|
||||||
', '.join('"%s"' % x for x in form_matches))
|
for x in form_matches))
|
||||||
self.msg = ''.join(buf)
|
self.msg = ''.join(buf)
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue