SF.net SVN: tmda: [2051] trunk/tmda-cgi/CgiUtil.py

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

Log Message:
-----------
There are times when PVar may be undefined.  Define it to None by default.

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

Modified: trunk/tmda-cgi/CgiUtil.py
===================================================================
--- trunk/tmda-cgi/CgiUtil.py	2006-10-02 21:41:29 UTC (rev 2050)
+++ trunk/tmda-cgi/CgiUtil.py	2006-10-02 21:42:20 UTC (rev 2051)
@@ -40,6 +40,7 @@
 UnquotedString = re.compile(r"^(\S+)\s*")
 HomeDirSearch  = re.compile("^~/")
 HTMLTagSearch  = re.compile("</?([^\s>]*).*?>", re.S)
+PVars = None
 
 # CGI exception classes
 class NotInstalled(Errors.TMDAError):


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