[Zope3-checkins] CVS: Zope3/src/zope/configuration - fields.py:1.14

Stephan Richter srichter at cosmos.phy.tufts.edu
Mon Aug 18 16:42:30 EDT 2003


Update of /cvs-repository/Zope3/src/zope/configuration
In directory cvs.zope.org:/tmp/cvs-serv2060/configuration

Modified Files:
	fields.py 
Log Message:
MAde change suggested by Fred and Philipp.


=== Zope3/src/zope/configuration/fields.py 1.13 => 1.14 ===
--- Zope3/src/zope/configuration/fields.py:1.13	Mon Aug 18 15:20:18 2003
+++ Zope3/src/zope/configuration/fields.py	Mon Aug 18 15:42:25 2003
@@ -381,7 +381,7 @@
         # Check whether there is an explicit message is specified
         default = None
         if v.startswith('[]'):
-            v = v[3:]
+            v = v[2:].lstrip()
         elif v.startswith('['):
             end = v.find(']')
             default = v[end+2:]




More information about the Zope3-Checkins mailing list