Nate Lowrie wrote: > "c:\Python25\lib\site-packages\dabo-full\trunk\dabo\ui\uiwx\dGrid.py", li > ne 2921, in addColumn > newOrd = maxOrd + 10 > TypeError: coercing to Unicode: need string or buffer, int found
For some reason, a prior column.Order is a unicode object, not an int. Try putting this assert in the Column setter: (line 1281) def _setOrder(self, val): assert isinstance(val, int) and see if that helps us locate what is happening. Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]
