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

Marius Gedminas marius at pov.lt
Wed Oct 15 15:43:24 EDT 2003


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

Modified Files:
	message.py 
Log Message:
Handle wrapped subject lines.

Note that z3checkins is lagging behind Zope 3 HEAD.  The reason for this
is the usual lack of time and the fact, that the only known installation
(http://checkins.schooltool.org/) is still running a bit older Zope 3
snapshot.



=== Products3/z3checkins/message.py 1.20 => 1.21 ===
--- Products3/z3checkins/message.py:1.20	Mon Sep 29 08:40:46 2003
+++ Products3/z3checkins/message.py	Wed Oct 15 15:42:53 2003
@@ -203,7 +203,7 @@
             subject = subject.split("CVS: ", 1)[1]
             directory = subject.split(' - ')[0]
         elif subject.find("rev ") != -1:
-            directory = subject.split(' - ')[1]
+            directory = subject.replace('\n', '').split(' - ')[1]
 
         m.rewindbody()
         body_lines = input.readlines()




More information about the Zope3-Checkins mailing list