Comment 4 for bug 1191096

Revision history for this message
Joshua Tasker (jtasker) wrote :

The error lies on line 2432 of /usr/bin/indicator-weather

To fix it, change the line from this:

                    if wi.places[i][0] == wi.place[0]:

to this:

                    if wi.places[i] is not None and wi.places[i][0] == wi.place[0]:

The fix will be included in the next unstable build.