GNOME Bugzilla – Bug 603641
hexadecimal without 0x
Last modified: 2009-12-02 22:00:48 UTC
Hi, I'm not sure if this is a bug. the problem: --
+ Trace 219433
from gui.maindialog import MainDialog as BillReminder
from gui.widgets.timeline import Timeline, Bullet
OVERDUE = 0b001
-- By adding a 0x before each of these lines no more problem. PS: It's my 1st time trying this app, so sorry if I'm missing something
Created attachment 148941 [details] [review] avoid-syntax-error-on-hexadecimals.patch
Created attachment 148955 [details] [review] Changed from binary literal to int to support python 2.5 and older.
This problem has been fixed in the development version (commit d59248f96bfaad789e732ddfa3b2ddf71626aabc). Basically the issue was caused by versions of python equal to or older than 2.5. Thank you so much for filling this bug and run git pull -u to get latest. :)
:-) great!