Fixed bug in Node.py function IsStringType : add domain type
authorgreg
Fri, 14 Nov 2008 15:50:08 +0100
changeset 523 8db762eb756b
parent 522 e69d5903a5b2
child 524 b94067330319
Fixed bug in Node.py function IsStringType : add domain type
objdictgen/node.py
--- a/objdictgen/node.py	Fri Nov 14 15:36:31 2008 +0100
+++ b/objdictgen/node.py	Fri Nov 14 15:50:08 2008 +0100
@@ -1043,7 +1043,7 @@
 #-------------------------------------------------------------------------------
 
     def IsStringType(self, index):
-        if index in (0x9, 0xA, 0xB):
+        if index in (0x9, 0xA, 0xB, 0xF):
             return True
         elif 0xA0 <= index < 0x100:
             result = self.GetEntry(index, 1)