From 7274975ce82fb8e9d55907111ea223e14a782546 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Tue, 9 Mar 2010 17:09:04 +0000 Subject: [PATCH] fix setting name --- PLC/API.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PLC/API.py b/PLC/API.py index 55a0349..dec2e08 100644 --- a/PLC/API.py +++ b/PLC/API.py @@ -132,7 +132,7 @@ class PLCAPI: # Aspects modify the API injecting code before/after method # calls. As of now we only have aspects for OMF integration, # that's why we enable aspects only if PLC_OMF is set to true. - if self.config.PLC_OMF: + if self.config.PLC_OMF_ENABLED: from aspects import apply_aspects; apply_aspects() -- 2.43.0