|
@@ -166,7 +166,7 @@ class ModelBootstrapVisitor(Visitor):
|
|
|
# Value attribute
|
|
|
attr_value = tree.get_children("value")[0].get_tail()[0]
|
|
|
if attr_value.head == "STRVALUE":
|
|
|
- attr_value = attr_value.get_text()[1:-1]
|
|
|
+ attr_value = '"%s"' % attr_value.get_text()[1:-1]
|
|
|
elif attr_value.head == "TRUE":
|
|
|
attr_value = True
|
|
|
elif attr_value.head == "FALSE":
|