[Zope3-checkins] CVS: Products3/z3checkins - message.py:1.17

Marius Gedminas marius at pov.lt
Wed Sep 17 09:34:45 EDT 2003


Update of /cvs-repository/Products3/z3checkins
In directory cvs.zope.org:/tmp/cvs-serv30300

Modified Files:
	message.py 
Log Message:
Fix an off-by-one error

=== Products3/z3checkins/message.py 1.16 => 1.17 ===
--- Products3/z3checkins/message.py:1.16	Wed Sep 17 09:15:35 2003
+++ Products3/z3checkins/message.py	Wed Sep 17 09:34:44 2003
@@ -532,7 +532,7 @@
         if dc is None:
             return self._subtrees
         description = dc.description.split('\r\n\r\n')
-        if len(description) < 2:
+        if len(description) < 3:
             return self._subtrees
         for line in description[2].splitlines():
             items = line.split(None, 3)




More information about the Zope3-Checkins mailing list