]> git.donarmstrong.com Git - lilypond.git/blobdiff - buildscripts/git-update-changelog.py
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/lilypond
[lilypond.git] / buildscripts / git-update-changelog.py
index 465e407ce1db46d73091003d762fa334fc7d965f..09f0d16b7afebad8214b9463cef4076fdc5f1301 100644 (file)
@@ -44,6 +44,7 @@ class Commit:
     def compare (self, other):
         return sign (time.mktime (self.date) - time.mktime (other.date))
 
+
     def check_diff_chunk (self, filename, chunk):
         removals = []
         def note_removal (m):
@@ -53,10 +54,9 @@ class Commit:
 
         if removals == []:
             return True
-
         if not os.path.exists (filename):
             return False
-        
+
         contents = open (filename).read ()
         for r in removals:
             if r not in contents:
@@ -176,16 +176,13 @@ Apply GIT patches and update change log.
 
 Run this file from the CVS directory, with commits from the repository in --git-dir.
 
-
-
-
 """)
     p.add_option ("--start",
                   action='store',
                   default='',
                   metavar="FIRST",
                   dest="start",
-                  help="all commits starting with FIRST.")
+                  help="all commits starting with FIRST (exclusive).")
     
     p.add_option ("--git-dir",
                   action='store',