From: Fredrik Tolf Date: Sun, 8 Nov 2015 02:52:53 +0000 (+0100) Subject: Always handle I/O errors in util.formparams. X-Git-Url: http://dolda2000.com/gitweb/?p=wrw.git;a=commitdiff_plain;h=806b2bc44ff36544d76abcff231d60a330aeded3 Always handle I/O errors in util.formparams. --- diff --git a/wrw/util.py b/wrw/util.py index 460344f..a1dcc6c 100644 --- a/wrw/util.py +++ b/wrw/util.py @@ -10,7 +10,10 @@ def wsgiwrap(callable): def formparams(callable): spec = inspect.getargspec(callable) def wrapper(req): - data = form.formdata(req) + try: + data = form.formdata(req) + except IOError: + raise resp.httperror(400, "Invalid request", "Form data was incomplete") args = dict(data.items()) args["req"] = req if not spec.keywords: