[Checkins] SVN: zope.errorview/trunk/src/zope/errorview/http.py return a str, not unicode here (why?)

Jan-Wijbrand Kolman janwijbrand at gmail.com
Wed Jan 19 11:26:30 EST 2011


Log message for revision 119720:
  return a str, not unicode here (why?)

Changed:
  U   zope.errorview/trunk/src/zope/errorview/http.py

-=-
Modified: zope.errorview/trunk/src/zope/errorview/http.py
===================================================================
--- zope.errorview/trunk/src/zope/errorview/http.py	2011-01-19 16:08:32 UTC (rev 119719)
+++ zope.errorview/trunk/src/zope/errorview/http.py	2011-01-19 16:26:29 UTC (rev 119720)
@@ -39,7 +39,7 @@
         self.request.response.setStatus(500)
 
     def render(self):
-        return u''
+        return ''
 
     def __call__(self):
         notify(HandleExceptionEvent(self.request))



More information about the checkins mailing list