bug 9564; fix exception on Event filter editor (#378)

for 'Events occurring on a particular day of the week' filter
This commit is contained in:
Paul Culley 2017-04-29 21:51:24 -05:00 committed by Sam Manzi
parent 77e9d796da
commit 95e0f43bf5

View File

@ -581,8 +581,8 @@ class EditRule(ManagedWindow):
elif v == _('Day of Week:'):
long_days = displayer.long_days
days_of_week = long_days[2:] + long_days[1:2]
t = MyList(map(str, range(7)), days_of_week)
else:
t = MyList(list(map(str, range(7))), days_of_week)
else:
t = MyEntry()
t.set_hexpand(True)
tlist.append(t)