##// END OF EJS Templates
hgweb: commit forgotten update to a3d7f99c23c0
Dirkjan Ochtman -
r7742:fceb9fa0 default
parent child Browse files
Show More
@@ -76,8 +76,8 b' class wsgirequest(object):'
76 raise TypeError('header value must be string: %r' % v)
76 raise TypeError('header value must be string: %r' % v)
77
77
78 if isinstance(status, ErrorResponse):
78 if isinstance(status, ErrorResponse):
79 self.header(status.headers)
79 status = statusmessage(status.code)
80 status = statusmessage(status.code)
80 self.header(status.headers)
81 elif status == 200:
81 elif status == 200:
82 status = '200 Script output follows'
82 status = '200 Script output follows'
83 elif isinstance(status, int):
83 elif isinstance(status, int):
General Comments 0
You need to be logged in to leave comments. Login now