mailr17540 - /trunk/scripts/log_converter.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on September 21, 2012 - 11:51:
Author: bugman
Date: Fri Sep 21 11:51:25 2012
New Revision: 17540

URL: http://svn.gna.org/viewcvs/relax?rev=17540&view=rev
Log:
Fix for the SVN log converter script for the relax release process.

All SVN messages beginning with "Changed" were being skipped.  The skipping 
of the "Changed paths:"
SVN log lines is now more explicit.


Modified:
    trunk/scripts/log_converter.py

Modified: trunk/scripts/log_converter.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/scripts/log_converter.py?rev=17540&r1=17539&r2=17540&view=diff
==============================================================================
--- trunk/scripts/log_converter.py (original)
+++ trunk/scripts/log_converter.py Fri Sep 21 11:51:25 2012
@@ -45,7 +45,7 @@
         continue
 
     # The 'Changed paths' line.
-    if search('^Changed', line):
+    if search('^Changed paths:', line):
         continue
 
     # Files and svn message.




Related Messages


Powered by MHonArc, Updated Fri Sep 21 12:20:01 2012