X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=PLC%2FAPI.py;fp=PLC%2FAPI.py;h=7af3cec2b9177ed1ab337b4f5bd447c2db19a4ba;hb=661935147a055b7c1b35c21292568e10161887dd;hp=0d228f7f7318bb65be1b686864b4f63882586486;hpb=6bd763b169c1ef7c6eff6b34f9f7877a4d9afdfa;p=plcapi.git diff --git a/PLC/API.py b/PLC/API.py index 0d228f7..7af3cec 100644 --- a/PLC/API.py +++ b/PLC/API.py @@ -141,11 +141,14 @@ class PLCAPI: else: raise PLCAPIError, "Unsupported database type " + self.config.PLC_DB_TYPE - # 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. + # Aspects modify the API by injecting code before, after or + # around method calls. -- http://github.com/baris/pyaspects/blob/master/README + # + # 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_ENABLED: - from aspects import apply_aspects; apply_aspects() + from aspects import apply_omf_aspect + apply_omf_aspect() def callable(self, method):