diff -r c28f40b27798 -r 746b2e02f6fb plugger.py --- a/plugger.py Tue Dec 08 16:27:27 2009 +0100 +++ b/plugger.py Tue Dec 08 16:28:10 2009 +0100 @@ -681,12 +681,8 @@ from plcopen.structures import IEC_KEYWORDS, TypeHierarchy_list # Construct debugger natively supported types -DebugTypes = [t for t in zip(*TypeHierarchy_list)[0] if not t.startswith("ANY")] + \ - ["STEP","TRANSITION","ACTION"] +DebugTypes = [t for t in zip(*TypeHierarchy_list)[0] if not t.startswith("ANY")] DebugTypesSize = {"BOOL" : 1, - "STEP" : 1, - "TRANSITION" : 1, - "ACTION" : 1, "SINT" : 1, "USINT" : 1, "BYTE" : 1,