From e617645b038bc7561d468a3a95126f3032973600 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 10 Oct 2025 16:18:30 +0800 Subject: [PATCH] bugfix --- appPublic/myTE.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appPublic/myTE.py b/appPublic/myTE.py index 1e0ae03..bba3222 100755 --- a/appPublic/myTE.py +++ b/appPublic/myTE.py @@ -12,7 +12,7 @@ def isNone(obj): return obj is None -def string_template_render(tmp_string, data): +def string_template_render(tmplstr, data): te = MyTemplateEngine([]) return te.renders(tmplstr, data)