PLCControler.py
changeset 1265 242512c56ea1
parent 1254 ebc765355536
child 1283 f3cfe1ff917e
--- a/PLCControler.py	Mon Jun 17 10:42:53 2013 +0200
+++ b/PLCControler.py	Mon Jun 17 23:40:41 2013 +0200
@@ -710,14 +710,12 @@
     
     def GetInstanceInfos(self, instance_path, debug = False):
         tagname = self.GetPouInstanceTagName(instance_path)
-        print instance_path, tagname
         if tagname is not None:
             infos = self.GetPouVariables(tagname, debug)
             infos["type"] = tagname
             return infos
         else:
             pou_path, var_name = instance_path.rsplit(".", 1)
-            print pou_path, tagname
             tagname = self.GetPouInstanceTagName(pou_path)
             if tagname is not None:
                 pou_infos = self.GetPouVariables(tagname, debug)