merge
authorEdouard Tisserant
Fri, 15 Jun 2012 18:28:57 +0200
changeset 8 73dcd03f53bb
parent 7 299a4e345380 (diff)
parent 6 8863b78144ee (current diff)
child 10 6450214a7c80
child 12 8917feb27b92
merge
LPCManager.py
--- a/LPCManager.py	Fri Jun 15 18:04:17 2012 +0200
+++ b/LPCManager.py	Fri Jun 15 18:28:57 2012 +0200
@@ -62,6 +62,15 @@
 sys.path.append(os.path.join(_base_folder, "beremiz"))
 
 _base_path = os.path.split(__file__)[0]
+import features
+from POULibrary import POULibrary
+
+class PLCLibrary(POULibrary):
+    def GetLibraryPath(self):
+        return os.path.join(_base_path, "pous.xml")
+
+features.libraries=[('LPC', lambda: PLCLibrary)]
+
 
 import connectors
 from LPCconnector import LPC_connector_factory
@@ -79,17 +88,6 @@
 misc.opjimg = lambda imgname: os.path.join(_base_folder, "beremiz", "images", imgname+".png")
 
 from Beremiz import *
-
-import features
-from POULibrary import POULibrary
-
-class PLCLibrary(POULibrary):
-    def GetLibraryPath(self):
-        return os.path.join(_base_path, "pous.xml")
-
-features.libraries.append(
-    ('LPC', lambda: PLCLibrary))
-
 from ProjectController import ProjectController
 from ConfigTreeNode import ConfigTreeNode
 from ProjectNodeEditor import ProjectNodeEditor