diff -r aa7f138648f3 -r c80b0d864475 plcopen/types_enums.py --- a/plcopen/types_enums.py Fri Mar 15 14:11:49 2019 +0100 +++ b/plcopen/types_enums.py Wed Mar 20 11:34:41 2019 +0100 @@ -117,6 +117,9 @@ def GetElementType(tagname): words = tagname.split("::") + print("GetElementType",tagname, len(words)) + if len(words) == 1: + return ITEM_CONFNODE return { "D": ITEM_DATATYPE, "P": ITEM_POU,