templates: fix missing closing brace in map-cmdline.status
authorYuya Nishihara <yuya@tcha.org>
Thu, 18 Jun 2015 23:08:27 +0900
changeset 25628 9c647f427aef
parent 25627 9573d8f346f1
child 25629 52e5f68d8363
templates: fix missing closing brace in map-cmdline.status Currently the parser does not validate the last closing brace, but future patches will make it less permissive for this kind of syntax errors.
mercurial/templates/map-cmdline.status
--- a/mercurial/templates/map-cmdline.status	Fri Jun 19 12:00:06 2015 -0500
+++ b/mercurial/templates/map-cmdline.status	Thu Jun 18 23:08:27 2015 +0900
@@ -16,7 +16,7 @@
                                          '{lfile_add}')}"}'
 lfile_add = '{label("status.added", "A {file}\n")}'
 
-lfile_copies_switch = '{file_copies_switch % "{lfile_copy_orig}{lfile_copy_dest}"'
+lfile_copies_switch = '{file_copies_switch % "{lfile_copy_orig}{lfile_copy_dest}"}'
 lfile_copy_orig = '{label("status.added", "A {name}\n")}'
 lfile_copy_dest = '{label("status.copied", "  {source}\n")}'