From db8b95cf2d30a9d696cf076e4b9fc215dd0c5ce7 Mon Sep 17 00:00:00 2001 From: Paul Culley Date: Sat, 29 Apr 2017 21:27:48 -0500 Subject: [PATCH] bug 9564; fix exception on Event filter editor (#377) for 'Events occurring on a particular day of the week' filter --- gramps/gui/editors/filtereditor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gui/editors/filtereditor.py b/gramps/gui/editors/filtereditor.py index 222378cb1..f743e7209 100644 --- a/gramps/gui/editors/filtereditor.py +++ b/gramps/gui/editors/filtereditor.py @@ -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)