[Python-checkins] r57036 - doctools/trunk/sphinx/web/application.py

georg.brandl python-checkins at python.org
Tue Aug 14 22:10:55 CEST 2007


Author: georg.brandl
Date: Tue Aug 14 22:10:55 2007
New Revision: 57036

Modified:
   doctools/trunk/sphinx/web/application.py
Log:
Fix arg.


Modified: doctools/trunk/sphinx/web/application.py
==============================================================================
--- doctools/trunk/sphinx/web/application.py	(original)
+++ doctools/trunk/sphinx/web/application.py	Tue Aug 14 22:10:55 2007
@@ -679,7 +679,7 @@
         try:
             if req.path == '/favicon.ico':
                 # TODO: change this to real favicon?
-                resp = self.get_error_404()
+                resp = self.get_error_404(req)
             elif req.path == '/robots.txt':
                 resp = Response(robots_txt, mimetype='text/plain')
             elif not req.path.endswith('/') and req.method == 'GET':


More information about the Python-checkins mailing list