[POS-commit] Kiwi/Kiwi Delegates.py,1.123,1.124

Christian Robottom Reis kiko at async.com.br
Thu Oct 16 01:39:31 BRST 2003


Update of /cvs/Kiwi/Kiwi
In directory anthem:/tmp/cvs-serv5923/Kiwi

Modified Files:
	Delegates.py 
Log Message:
Fix bustage: we were setting row data to the wrong row (amazing!)


Index: Delegates.py
===================================================================
RCS file: /cvs/Kiwi/Kiwi/Delegates.py,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -d -r1.123 -r1.124
--- Delegates.py	15 Oct 2003 20:58:05 -0000	1.123
+++ Delegates.py	16 Oct 2003 01:39:29 -0000	1.124
@@ -676,8 +676,8 @@
         for item in l:
             text = _get_text(item)
             row = _get_row(text[column], column, decimal, convert=convert)
-            _insert(_o, row, text)
-            _set_row_data(row, item)
+            insert_row = _insert(_o, row, text)
+            _set_row_data(insert_row, item)
             if progress_handler is None:
                 continue
             i = i + 1



More information about the POS-commit mailing list