Fixed some optimized reference copy errors

svn: r14148
This commit is contained in:
Doug Blank
2010-01-27 12:07:25 +00:00
parent e16a75f449
commit 1bc7a15a27
3 changed files with 7 additions and 7 deletions

View File

@ -100,7 +100,7 @@ class SimpleTable(object):
columns.append(col)
# end of unicode fix
self.__columns = list(copy.copy(columns))
self.__sort_vals = [[]]*len(self.__columns)
self.__sort_vals = [[] for i in range(len(self.__columns))]
def set_callback(self, which, callback):
"""