connectors/LPC/__init__.py
changeset 717 1c23952dbde1
parent 545 627e5c636a4f
--- a/connectors/LPC/__init__.py	Thu May 03 19:02:34 2012 +0200
+++ b/connectors/LPC/__init__.py	Mon May 07 18:47:29 2012 +0200
@@ -19,7 +19,7 @@
 #License along with this library; if not, write to the Free Software
 #Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
-def LPC_connector_factory(uri, pluginsroot):
+def LPC_connector_factory(uri, confnodesroot):
     """
     This returns the connector to LPC style PLCobject
     """
@@ -27,9 +27,9 @@
     mode,comportstr = location.split('/')
     if mode=="APPLICATION":
         from LPCAppObject import LPCAppObject 
-        return LPCAppObject(pluginsroot,comportstr)
+        return LPCAppObject(confnodesroot,comportstr)
     elif mode=="BOOTLOADER":
         from LPCBootObject import LPCBootObject 
-        return LPCBootObject(pluginsroot,comportstr)
+        return LPCBootObject(confnodesroot,comportstr)