diff mercurial/filemerge.py @ 21693:9c35f3a8cac4

merge: drop the quotes around commit description We already have a ":" after the user name to denote the start of the description. The current usage of quotes around the description is problematic as the truncation to 80 chars is likely to drop the closing quote. This may confuse syntax coloration in some editors.
author Pierre-Yves David <pierre-yves.david@fb.com>
date Mon, 26 May 2014 11:44:58 -0700
parents 47b97d9af27e
children 755bf1bbe0a9
line wrap: on
line diff
--- a/mercurial/filemerge.py	Thu Aug 15 15:47:15 2013 -0500
+++ b/mercurial/filemerge.py	Mon May 26 11:44:58 2014 -0700
@@ -298,7 +298,7 @@
     '{ifeq(tags, "tip", "", "{tags} ")}' +
     '{if(bookmarks, "{bookmarks} ")}' +
     '{ifeq(branch, "default", "", "{branch} ")}' +
-    '- {author|user}: "{desc|firstline}"')
+    '- {author|user}: {desc|firstline}')
 
 _defaultconflictlabels = ['local', 'other']