From: Han-Wen Nienhuys Date: Tue, 7 Nov 2006 01:54:48 +0000 (+0100) Subject: run cvs up before patching. X-Git-Tag: release/2.10.0-2~32^2~3 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=192dd7aa0343d273784c980813883bab656871da;p=lilypond.git run cvs up before patching. --- diff --git a/buildscripts/git-update-changelog.py b/buildscripts/git-update-changelog.py index 54ab112d0b..d67453ac03 100644 --- a/buildscripts/git-update-changelog.py +++ b/buildscripts/git-update-changelog.py @@ -225,13 +225,13 @@ Run this file from the CVS directory, with commits from the repository in --git- try: previously_done = dict((c, 1) for c in open ('.git-commits-done').read ().split ('\n')) - except OSError: + except IOError: previously_done = {} - commits = [c for c in commits if not previously_done.has_key (c.committish)] commits = [c for c in commits if not previously_done.has_key (c.committish)] commits = sorted (commits, cmp=Commit.compare) + system ('cvs up') file_adddel = [] collated_log = ''