Author: humbedooh
Date: Sun Mar 22 19:53:08 2015
New Revision: 1668467
URL: http://svn.apache.org/r1668467
Log:
return none if none...
Modified:
steve/trunk/pytest/www/cgi-bin/lib/form.py
Modified: steve/trunk/pytest/www/cgi-bin/lib/form.py
URL:
http://svn.apache.org/viewvc/steve/trunk/pytest/www/cgi-bin/lib/form.py?rev=1668467&r1=1668466&r2=1668467&view=diff
==============================================================================
--- steve/trunk/pytest/www/cgi-bin/lib/form.py (original)
+++ steve/trunk/pytest/www/cgi-bin/lib/form.py Sun Mar 22 19:53:08 2015
@@ -9,4 +9,5 @@ def getvalue(key):
val = xform.getvalue(key)
if val:
return val.replace("<", "<")
-
\ No newline at end of file
+ else:
+ return None
\ No newline at end of file