Activity log for bug #839675

Date Who What changed Old value New value Message
2011-09-02 16:02:46 Javier Collado bug added bug
2011-09-02 16:02:46 Javier Collado attachment added Patch with the right color_parse statement in oneiric https://bugs.launchpad.net/bugs/839675/+attachment/2344595/+files/gtk_interface.py.patch
2011-09-02 16:03:04 Javier Collado summary Gdk.color_parse Gdk.color_parse error in oneiric
2011-09-02 16:03:25 Javier Collado description checkbox-gtk fails to launch in oneiric with the following traceback: Traceback (most recent call last): File "/usr/lib/python2.7/dist-packages/checkbox/reactor.py", line 74, in fire results.append(handler(*args, **kwargs)) File "/usr/share/checkbox/plugins/user_interface.py", line 54, in run interface = interface_class(self.title, self.data_path) File "/usr/lib/python2.7/dist-packages/checkbox_gtk/gtk_interface.py", line 83, in __init__ color = Gdk.color_parse("#F0EBE2")[1] TypeError: 'Color' object does not support indexing After some investigation, it turns out that in natty the os such a command is: (True, <Gdk.Color(red=61680, green=60395, blue=58082)>) while in oneiric is: <Gdk.Color(red=61680, green=60395, blue=58082)> Hence, to fix the problem in oneiric the following line: color = Gdk.color_parse("#F0EBE2")[1] has to be replaced with: color = Gdk.color_parse("#F0EBE2") checkbox-gtk fails to launch in oneiric with the following traceback: Traceback (most recent call last):   File "/usr/lib/python2.7/dist-packages/checkbox/reactor.py", line 74, in fire     results.append(handler(*args, **kwargs))   File "/usr/share/checkbox/plugins/user_interface.py", line 54, in run     interface = interface_class(self.title, self.data_path)   File "/usr/lib/python2.7/dist-packages/checkbox_gtk/gtk_interface.py", line 83, in __init__     color = Gdk.color_parse("#F0EBE2")[1] TypeError: 'Color' object does not support indexing After some investigation, it turns out that in natty the output of such a command is: (True, <Gdk.Color(red=61680, green=60395, blue=58082)>) while in oneiric is: <Gdk.Color(red=61680, green=60395, blue=58082)> Hence, to fix the problem in oneiric the following line:     color = Gdk.color_parse("#F0EBE2")[1] has to be replaced with:     color = Gdk.color_parse("#F0EBE2")
2011-09-04 00:13:33 Daniel Manrique checkbox: importance Undecided Critical
2011-09-04 00:13:37 Daniel Manrique checkbox: status New Confirmed
2011-09-04 13:33:31 Lei Wang bug added subscriber Ray Wang
2011-09-05 16:06:05 Daniel Manrique bug watch added https://bugzilla.gnome.org/show_bug.cgi?id=653462
2011-09-05 17:01:36 Launchpad Janitor branch linked lp:checkbox
2011-09-05 17:03:22 Launchpad Janitor branch linked lp:~roadmr/ubuntu/oneiric/checkbox/0.12.6
2011-09-05 20:31:22 Daniel Manrique branch unlinked lp:~roadmr/ubuntu/oneiric/checkbox/0.12.6
2011-09-05 20:43:30 Launchpad Janitor branch linked lp:~roadmr/ubuntu/oneiric/checkbox/0.12.6
2011-09-06 02:09:12 Daniel Manrique checkbox: status Confirmed Triaged
2011-09-06 02:09:15 Daniel Manrique checkbox: status Triaged In Progress
2011-09-06 02:09:19 Daniel Manrique checkbox: assignee Daniel Manrique (roadmr)
2011-09-06 02:09:26 Daniel Manrique checkbox: milestone 0.12.6
2011-09-06 09:32:22 Anthony Wong bug added subscriber Anthony Wong
2011-09-07 03:19:21 Launchpad Janitor branch linked lp:ubuntu/checkbox
2011-09-07 14:05:33 Daniel Manrique checkbox: status In Progress Fix Released