cubicweb/wsgi/handler.py
changeset 12231 55924e962cd7
parent 11767 432f87a63057
child 12567 26744ad37953
--- a/cubicweb/wsgi/handler.py	Wed Nov 29 15:50:07 2017 +0100
+++ b/cubicweb/wsgi/handler.py	Wed Nov 29 16:14:57 2017 +0100
@@ -79,7 +79,7 @@
     """
     def __init__(self, code, req, body=None):
         text = STATUS_CODE_TEXT.get(code, 'UNKNOWN STATUS CODE')
-        self.status =  '%s %s' % (code, text)
+        self.status =  '%d %s' % (code, text)
         self.headers = list(chain(*[zip(repeat(k), v)
                                     for k, v in req.headers_out.getAllRawHeaders()]))
         self.headers = [(str(k), str(v)) for k, v in self.headers]