From 12c40b08c0317282d4d278bc8272c55cf2f529ba Mon Sep 17 00:00:00 2001 From: smbaker Date: Mon, 27 May 2013 14:59:27 -0700 Subject: [PATCH] add support for netconfig aspect --- PLC/API.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PLC/API.py b/PLC/API.py index 6cab28e..201de2d 100644 --- a/PLC/API.py +++ b/PLC/API.py @@ -155,6 +155,9 @@ class PLCAPI: from aspects import apply_ratelimit_aspect apply_ratelimit_aspect() + if getattr(self.config, "PLC_NETCONFIG_ENABLED", False): + from aspects.netconfigaspects import apply_netconfig_aspect + apply_netconfig_aspect() # Enable Caching. Only for GetSlivers for the moment. # TODO: we may consider to do this in an aspect like the ones above. -- 2.43.0