Comment 2 for bug 1093343

Revision history for this message
timothymowens (timothymowens) wrote :

I was able to fix this by editing /usr/share/google-tasks-indicator/googletasksindicator.py and changing the following line:

iscompleted = (task['status']==completed)

To:

iscompleted = (task['status']=='completed')