editors/DataTypeEditor.py
changeset 1508 4c645e6b8c98
parent 1412 50192dd2f5ff
child 1571 486f94a8032c
--- a/editors/DataTypeEditor.py	Thu Apr 28 13:05:57 2016 +0300
+++ b/editors/DataTypeEditor.py	Thu Apr 28 15:21:02 2016 +0300
@@ -74,10 +74,11 @@
                 return row + 1
             colname = self.GetColLabelValue(col, False)
             value = self.data[row].get(colname, "")
+               
             if colname == "Type" and isinstance(value, TupleType):
                 if value[0] == "array":
                     return "ARRAY [%s] OF %s" % (",".join(map(lambda x : "..".join(x), value[2])), value[1])
-            return str(value)
+            return value
 
     def SetValue(self, row, col, value):
         if col < len(self.colnames):