[Zope-Checkins] CVS: Packages/ZConfig - matcher.py:1.1.2.20

Fred L. Drake, Jr. fred@zope.com
Fri, 13 Dec 2002 13:50:35 -0500


Update of /cvs-repository/Packages/ZConfig
In directory cvs.zope.org:/tmp/cvs-serv1606

Modified Files:
      Tag: zconfig-schema-devel-branch
	matcher.py 
Log Message:
Since we have decent datatype support, the handler should not replace
the value, it should simply use the value.


=== Packages/ZConfig/matcher.py 1.1.2.19 => 1.1.2.20 ===
--- Packages/ZConfig/matcher.py:1.1.2.19	Fri Dec 13 12:28:11 2002
+++ Packages/ZConfig/matcher.py	Fri Dec 13 13:50:34 2002
@@ -139,7 +139,7 @@
         # XXX  sibling SectionValue instances have been created and
         # XXX  we're ready to construct the parent.
         if self.info.handler is not None:
-            v = self.info.handler(v)
+            self.info.handler(v)
         return v
 
     def createValue(self, attrnames):