From 734a8c210c50456f2478a24d55e431ff48b19a71 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sat, 3 Aug 2024 19:12:15 +0800 Subject: [PATCH] bugfix --- ahserver/functionProcessor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ahserver/functionProcessor.py b/ahserver/functionProcessor.py index 78cc4bb..31b6a0b 100755 --- a/ahserver/functionProcessor.py +++ b/ahserver/functionProcessor.py @@ -30,7 +30,7 @@ class FunctionProcessor(BaseProcessor): rf = RegisterFunction() f = rf.get(rfname) if f is None: - error(f'{rfname=} is not registered') + error(f'{rfname=} is not registered, {rf.registKW=}') return None self.run_ns['request'] = request globals().update(self.run_ns)