Mercurial > hg-stable
changeset 4824:f3f84d5cd268
Strip whitespace from changeset description in changeset_templater.
changeset_printer already does this, too.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Sun, 08 Jul 2007 10:43:57 +0200 |
parents | b68b250f9537 |
children | 3cf94964c56b |
files | mercurial/cmdutil.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Fri Jul 06 08:48:28 2007 +0200 +++ b/mercurial/cmdutil.py Sun Jul 08 10:43:57 2007 +0200 @@ -966,7 +966,7 @@ 'author': changes[1], 'branches': showbranches, 'date': changes[2], - 'desc': changes[4], + 'desc': changes[4].strip(), 'file_adds': showadds, 'file_dels': showdels, 'files': showfiles,