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

for 'Events occurring on a particular day of the week' filter
This commit is contained in:
Paul Culley 2017-04-29 21:27:48 -05:00 committed by Sam Manzi
parent 9dec0bc364
commit db8b95cf2d

View File

@ -580,7 +580,7 @@ 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)
t = MyList(list(map(str, range(7))), days_of_week)
else:
t = MyEntry()
t.set_hexpand(True)