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 jg...@apache.org on 2006/03/26 19:44:26 UTC

svn commit: r388931 - /httpd/mod_python/trunk/Doc/modpython6.tex

Author: jgallacher
Date: Sun Mar 26 09:44:24 2006
New Revision: 388931

URL: http://svn.apache.org/viewcvs?rev=388931&view=rev
Log:
Fixed indentation in example code for publisher doc.

Modified:
    httpd/mod_python/trunk/Doc/modpython6.tex

Modified: httpd/mod_python/trunk/Doc/modpython6.tex
URL: http://svn.apache.org/viewcvs/httpd/mod_python/trunk/Doc/modpython6.tex?rev=388931&r1=388930&r2=388931&view=diff
==============================================================================
--- httpd/mod_python/trunk/Doc/modpython6.tex (original)
+++ httpd/mod_python/trunk/Doc/modpython6.tex Sun Mar 26 09:44:24 2006
@@ -97,11 +97,11 @@
 \begin{verbatim}
   def index(req):
 
-  return "We are in index()"
+    return "We are in index()"
 
   def hello(req):
 
-  return "We are in hello()"
+    return "We are in hello()"
 \end{verbatim}
 
 Then: