From: greg Date: Fri, 14 Nov 2008 14:50:08 +0000 (+0000) Subject: Fixed bug in Node.py function IsStringType : add domain type X-Git-Url: https://rtime.felk.cvut.cz/gitweb/CanFestival-3.git/commitdiff_plain/7a7d1d93fc34b084abd040fb0b11865526f70752?hp=64dfb96aa56729c0b0a1c3f33e15535885721e0a Fixed bug in Node.py function IsStringType : add domain type --- diff --git a/objdictgen/node.py b/objdictgen/node.py index 2d846ba..a7a4186 100755 --- a/objdictgen/node.py +++ b/objdictgen/node.py @@ -1043,7 +1043,7 @@ class Node: #------------------------------------------------------------------------------- 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)