cubicweb/wsgi/request.py
changeset 12578 d06a2feae373
parent 12567 26744ad37953
equal deleted inserted replaced
12576:3aa0c203747c 12578:d06a2feae373
    85     def __repr__(self):
    85     def __repr__(self):
    86         # Since this is called as part of error handling, we need to be very
    86         # Since this is called as part of error handling, we need to be very
    87         # robust against potentially malformed input.
    87         # robust against potentially malformed input.
    88         form = pformat(self.form)
    88         form = pformat(self.form)
    89         meta = pformat(self.environ)
    89         meta = pformat(self.environ)
    90         return '<CubicWebWsgiRequest\FORM:%s,\nMETA:%s>' % \
    90         return '<CubicWebWsgiRequest\nFORM:%s,\nMETA:%s>' % \
    91             (form, meta)
    91             (form, meta)
    92 
    92 
    93     ## cubicweb request interface ################################################
    93     ## cubicweb request interface ################################################
    94 
    94 
    95     def http_method(self):
    95     def http_method(self):