From a2f9fbfd0663a92e81548e35828f59da9d9a8ef0 Mon Sep 17 00:00:00 2001 From: Mike McLean Date: Wed, 7 May 2025 12:27:02 -0400 Subject: [PATCH] typo --- www/lib/kojiweb/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/lib/kojiweb/util.py b/www/lib/kojiweb/util.py index ad840b4b..6deacc75 100644 --- a/www/lib/kojiweb/util.py +++ b/www/lib/kojiweb/util.py @@ -360,7 +360,7 @@ def passthrough(context, *varnames, prefix='&', invert=False, toggleOrder=None): raise Exception('template does not define _PASSTHROUGH') varnames = {n for n in _PASSTHROUGH if n not in varnames} data = {n: context.get(n, default=None) for n in varnames} - return _passthrough(data, prefixi, toggleOrder) + return _passthrough(data, prefix, toggleOrder) def _passthrough(data, prefix='&', toggleOrder=None):