SF.net SVN: tmda: [2045] trunk/tmda-cgi/Template.py

[email protected] Mon, 02 Oct 2006 11:15:27 -0700
Newsgroups gmane.mail.spam.tmda.cvs
Message-ID <[email protected]>
Revision: 2045
          http://svn.sourceforge.net/tmda/?rev=2045&view=rev
Author:   lack
Date:     2006-10-02 11:15:22 -0700 (Mon, 02 Oct 2006)

Log Message:
-----------
Fixed tab character in otherwise all-space-delimited python file.

Modified Paths:
--------------
    trunk/tmda-cgi/Template.py

Modified: trunk/tmda-cgi/Template.py
===================================================================
--- trunk/tmda-cgi/Template.py	2006-10-02 17:49:55 UTC (rev 2044)
+++ trunk/tmda-cgi/Template.py	2006-10-02 18:15:22 UTC (rev 2045)
@@ -156,7 +156,7 @@
     # to allow Themes to use custom settings
     if PVars:
       for var in PVars.vars( "Theme" ):
-	self.Dict[ var ] = PVars[ "Theme", var ]
+        self.Dict[ var ] = PVars[ "Theme", var ]
     self.Items = {}
 
   def refreshPVars( self, PVars ):


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.