mercurial/hgweb/webutil.py
changeset 50916 98b8836d0e82
parent 50580 f30ce3558c2b
child 50928 d718eddf01d9
--- a/mercurial/hgweb/webutil.py	Fri Sep 01 11:57:38 2023 +0200
+++ b/mercurial/hgweb/webutil.py	Fri Sep 01 12:09:54 2023 +0200
@@ -230,16 +230,16 @@
         ui, untrusted=True, section=section, whitespace=True
     )
 
-    for k in (
-        b'ignorews',
-        b'ignorewsamount',
-        b'ignorewseol',
-        b'ignoreblanklines',
+    for kb, ks in (
+        (b'ignorews', 'ignorews'),
+        (b'ignorewsamount', 'ignorewsamount'),
+        (b'ignorewseol', 'ignorewseol'),
+        (b'ignoreblanklines', 'ignoreblanklines'),
     ):
-        v = req.qsparams.get(k)
+        v = req.qsparams.get(kb)
         if v is not None:
             v = stringutil.parsebool(v)
-            setattr(diffopts, k, v if v is not None else True)
+            setattr(diffopts, ks, v if v is not None else True)
 
     return diffopts