diff -r 7788545f4137 -r aaacc83aa86b targets/__init__.py --- 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("__")])