From: Han-Wen Nienhuys Date: Mon, 30 Oct 2006 16:49:09 +0000 (+0100) Subject: only prepend header if one patch was successful. X-Git-Tag: release/2.10.0-2~35^2~11 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=68f62070ed2c03b8532a0ee714e537abd72269aa;p=lilypond.git only prepend header if one patch was successful. --- diff --git a/buildscripts/git-update-changelog.py b/buildscripts/git-update-changelog.py index 15c35e9c31..029717dc9a 100644 --- a/buildscripts/git-update-changelog.py +++ b/buildscripts/git-update-changelog.py @@ -180,7 +180,8 @@ Run this file from the CVS directory, with --git-dir if op == 'add': system ('cvs add %(f)s' % locals ()) - new_log = header (last_commit) + new_log + '\n' + if last_commit: + new_log = header (last_commit) + new_log + '\n' log = new_log + log