# HG changeset patch # User Martin von Zweigbergk # Date 1557559062 25200 # Node ID b47e9712000b68e1afa8e9571e0ecd7bc37dede3 # Parent c2d10506725cd41cfa3f23d7df3a65d2d8e07ca5 templatekw: move showfileadds() close to showfile{mods,dels}() Differential Revision: https://phab.mercurial-scm.org/D6370 diff -r c2d10506725c -r b47e9712000b mercurial/templatekw.py --- a/mercurial/templatekw.py Fri May 24 15:38:50 2019 +0300 +++ b/mercurial/templatekw.py Sat May 11 00:17:42 2019 -0700 @@ -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."""