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.
--- 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")}'