Mercurial > public > mercurial-scm > hg-stable
diff mercurial/cmdutil.py @ 9961:0aa1a632262b
cmdutil: fix missing default 'extra' template
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Mon, 30 Nov 2009 22:23:09 +0100 |
parents | a92539567ef3 |
children | a68fb6f4ae4b |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Mon Nov 30 19:52:03 2009 +0100 +++ b/mercurial/cmdutil.py Mon Nov 30 22:23:09 2009 +0100 @@ -755,7 +755,8 @@ cache={ 'parent': '{rev}:{node|formatnode} ', 'manifest': '{rev}:{node|formatnode}', - 'filecopy': '{name} ({source})'}) + 'filecopy': '{name} ({source})', + 'extra': '{key}={value|stringescape}'}) # Cache mapping from rev to a tuple with tag date, tag # distance and tag name self._latesttagcache = {-1: (0, 0, 'null')}