You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by nl...@apache.org on 2005/01/08 17:34:55 UTC

svn commit: r124660 - /httpd/mod_python/trunk/lib/python/mod_python/apache.py

Author: nlehuen
Date: Sat Jan  8 08:34:54 2005
New Revision: 124660

URL: http://svn.apache.org/viewcvs?view=rev&rev=124660
Log:
Fixed indentation problems due to a bad TAB to SPACE conversion (the tab setting of the previous commiter was 8 not 4).
Modified:
   httpd/mod_python/trunk/lib/python/mod_python/apache.py

Modified: httpd/mod_python/trunk/lib/python/mod_python/apache.py
Url: http://svn.apache.org/viewcvs/httpd/mod_python/trunk/lib/python/mod_python/apache.py?view=diff&rev=124660&p1=httpd/mod_python/trunk/lib/python/mod_python/apache.py&r1=124659&p2=httpd/mod_python/trunk/lib/python/mod_python/apache.py&r2=124660
==============================================================================
--- httpd/mod_python/trunk/lib/python/mod_python/apache.py	(original)
+++ httpd/mod_python/trunk/lib/python/mod_python/apache.py	Sat Jan  8 08:34:54 2005
@@ -128,7 +128,7 @@
             finally:
                 exc_traceback = None
 
-    return result
+        return result
 
     def FilterDispatch(self, filter):
 
@@ -234,7 +234,7 @@
             finally:
                 exc_traceback = None
 
-    return OK
+        return OK
 
     def HandlerDispatch(self, req):
         """
@@ -349,17 +349,16 @@
             finally:
                 exc_traceback = None
 
-    return result
+        return result
 
 
     def ReportError(self, etype, evalue, etb, req=None, filter=None, srv=None,
                     phase="N/A", hname="N/A", debug=0):
-    """
-    This function is only used when debugging is on.
-    It sends the output similar to what you'd see
-    when using Python interactively to the browser
-    """
-
+        """
+        This function is only used when debugging is on.
+        It sends the output similar to what you'd see
+        when using Python interactively to the browser
+        """
         try:       # try/finally
             try:        # try/except