targets/__init__.py
changeset 762 aaacc83aa86b
parent 742 41a4a560406c
child 1001 3f966bbb3fba
--- a/targets/__init__.py	Thu Jun 07 01:14:58 2012 +0200
+++ b/targets/__init__.py	Fri Jun 08 12:39:37 2012 +0200
@@ -37,8 +37,8 @@
     return lambda:getattr(__import__(name,globals(),locals()), name+"_target")
 
 targets = dict([(name, {"xsd":path.join(_base_path, name, "XSD"), 
-                  "class":_GetLocalTargetClassFactory(name),
-                  "code": path.join(path.split(__file__)[0],name,"plc_%s_main.c"%name)})
+                        "class":_GetLocalTargetClassFactory(name),
+                        "code": path.join(path.split(__file__)[0],name,"plc_%s_main.c"%name)})
                 for name in listdir(_base_path) 
                     if path.isdir(path.join(_base_path, name)) 
                        and not name.startswith("__")])