Mercurial > hg
changeset 1707:33d09f4a6fef
Put the empty line in commit text above the branch merge line.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Thu, 09 Feb 2006 07:14:05 +0100 |
parents | 20b621154e17 |
children | 4fdcfedf2a19 |
files | mercurial/localrepo.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/localrepo.py Thu Feb 09 07:01:23 2006 +0100 +++ b/mercurial/localrepo.py Thu Feb 09 07:14:05 2006 +0100 @@ -437,10 +437,10 @@ new.sort() if not text: - edittext = "" + edittext = "\n" if p2 != nullid: edittext += "HG: branch merge\n" - edittext += "\n" + "HG: manifest hash %s\n" % hex(mn) + edittext += "HG: manifest hash %s\n" % hex(mn) edittext += "".join(["HG: changed %s\n" % f for f in changed]) edittext += "".join(["HG: removed %s\n" % f for f in remove]) if not changed and not remove: