[Zodb-checkins] CVS: Packages/ZConfig - Context.py:1.7

Fred L. Drake, Jr. fred@zope.com
Thu, 7 Nov 2002 13:34:50 -0500


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

Modified Files:
	Context.py 
Log Message:
Fix stupid typos.  (Sorry, I thought I'd run the tests after I made
the last part of this change.)


=== Packages/ZConfig/Context.py 1.6 => 1.7 ===
--- Packages/ZConfig/Context.py:1.6	Thu Nov  7 11:21:41 2002
+++ Packages/ZConfig/Context.py	Thu Nov  7 13:34:50 2002
@@ -156,9 +156,9 @@
         # users.
         self._all_sections.reverse()
         for sect in self._all_sections:
-            if self.delegate is None:
+            if sect.delegate is None:
                 sect.finish()
         for sect in self._all_sections:
-            if self.delegate is not None:
+            if sect.delegate is not None:
                 sect.finish()
         self._all_sections = None