diff -r d7f474d10210 -r 4c645e6b8c98 editors/DataTypeEditor.py --- 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):