changeset 36894:ee395147bb28

hgweb: remove unused **map argument It was unused before the recent code refactoring AFAICT. Differential Revision: https://phab.mercurial-scm.org/D2816
author Gregory Szorc <gregory.szorc@gmail.com>
date Sun, 11 Mar 2018 10:38:46 -0700
parents 455918512ed2
children a5c478843c82
files mercurial/hgweb/hgwebdir_mod.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/hgweb/hgwebdir_mod.py	Sun Mar 11 10:37:25 2018 -0700
+++ b/mercurial/hgweb/hgwebdir_mod.py	Sun Mar 11 10:38:46 2018 -0700
@@ -148,7 +148,7 @@
 
     return archives
 
-def rawindexentries(ui, repos, wsgireq, req, subdir='', **map):
+def rawindexentries(ui, repos, wsgireq, req, subdir=''):
     descend = ui.configbool('web', 'descend')
     collapse = ui.configbool('web', 'collapse')
     seenrepos = set()
@@ -274,9 +274,9 @@
         yield row
 
 def indexentries(ui, repos, wsgireq, req, stripecount, sortcolumn='',
-                 descending=False, subdir='', **map):
+                 descending=False, subdir=''):
 
-    rows = rawindexentries(ui, repos, wsgireq, req, subdir=subdir, **map)
+    rows = rawindexentries(ui, repos, wsgireq, req, subdir=subdir)
 
     sortdefault = None, False