diff --git a/mercurial/templatekw.py b/mercurial/templatekw.py --- a/mercurial/templatekw.py +++ b/mercurial/templatekw.py @@ -295,11 +295,6 @@ files = stat[index] return templateutil.compatfileslist(context, mapping, name, files) -@templatekeyword('file_adds', requires={'ctx', 'revcache'}) -def showfileadds(context, mapping): - """List of strings. Files added by this changeset.""" - return _showfilesbystat(context, mapping, 'file_add', 1) - @templatekeyword('file_copies', requires={'repo', 'ctx', 'cache', 'revcache'}) def showfilecopies(context, mapping): @@ -334,6 +329,11 @@ return templateutil.compatfilecopiesdict(context, mapping, 'file_copy', copies) +@templatekeyword('file_adds', requires={'ctx', 'revcache'}) +def showfileadds(context, mapping): + """List of strings. Files added by this changeset.""" + return _showfilesbystat(context, mapping, 'file_add', 1) + @templatekeyword('file_dels', requires={'ctx', 'revcache'}) def showfiledels(context, mapping): """List of strings. Files removed by this changeset."""