Author: eallen
Date: 2008-09-03 15:54:29 -0400 (Wed, 03 Sep 2008)
New Revision: 2397
Modified:
mgmt/trunk/cumin/python/wooly/widgets.py
Log:
Restore inadvertent deletion of none-ifying for property values
Modified: mgmt/trunk/cumin/python/wooly/widgets.py
===================================================================
--- mgmt/trunk/cumin/python/wooly/widgets.py 2008-09-03 19:49:09 UTC (rev 2396)
+++ mgmt/trunk/cumin/python/wooly/widgets.py 2008-09-03 19:54:29 UTC (rev 2397)
@@ -420,6 +420,8 @@
if type(value) is str:
value = escape(value)
+ elif value is None:
+ value = "<em>None</em>"
return value
Show replies by date