templatekw: move showfileadds() close to showfile{mods,dels}()
authorMartin von Zweigbergk <martinvonz@google.com>
Sat, 11 May 2019 00:17:42 -0700
changeset 42371 b47e9712000b
parent 42370 c2d10506725c
child 42372 ba6ca4e80607
templatekw: move showfileadds() close to showfile{mods,dels}() Differential Revision: https://phab.mercurial-scm.org/D6370
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."""