Gdk.color_parse error in oneiric
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Checkbox |
Fix Released
|
Critical
|
Daniel Manrique |
Bug Description
checkbox-gtk fails to launch in oneiric with the following traceback:
Traceback (most recent call last):
File "/usr/lib/
results.
File "/usr/share/
interface = interface_
File "/usr/lib/
color = Gdk.color_
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(
while in oneiric is:
<Gdk.Color(
Hence, to fix the problem in oneiric the following line:
color = Gdk.color_
has to be replaced with:
color = Gdk.color_
Related branches
- Mathieu Trudel-Lapierre: Approve
-
Diff: 2993 lines (+787/-566)5 files modifiedcheckbox_gtk/gtk_interface.py (+3/-1)
debian/changelog (+10/-0)
po/cs.po (+414/-201)
po/en_GB.po (+358/-362)
po/es.po (+2/-2)
Marking as confirmed due to bug 840376, and importance: Critical, since checkbox doesn't start at all and being able to test the system is something a lot of Ubuntu users will want to do.