File pysol-4.82-colorchooser.patch of Package pysol
--- src/tk/selecttile.py.orig 2003-09-02 11:06:21.000000000 +0200
+++ src/tk/selecttile.py 2004-07-01 12:59:52.352951970 +0200
@@ -167,7 +167,7 @@
c = tkColorChooser.askcolor(master=self.top, initialcolor=self.tablecolor,
title="Select table color")
if c and c[1]:
- self.key = string.lower(c[1])
+ self.key = string.lower(c[1].string)
self.tablecolor = self.key
self.tree.updateSelection(self.key)
self.updatePreview(self.key)