]> rtime.felk.cvut.cz Git - CanFestival-3.git/commitdiff
Fixed bug in Node.py function IsStringType : add domain type
authorgreg <greg>
Fri, 14 Nov 2008 14:50:08 +0000 (14:50 +0000)
committergreg <greg>
Fri, 14 Nov 2008 14:50:08 +0000 (14:50 +0000)
objdictgen/node.py

index 2d846ba93f4b1e07ba314fb2da566ddabec17745..a7a4186ba1b7321e09c1155c3f7f6826d224e6c3 100755 (executable)
@@ -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)