diff --git a/gramps/gui/widgets/grampletpane.py b/gramps/gui/widgets/grampletpane.py index 0c092cb4e..e7782b392 100644 --- a/gramps/gui/widgets/grampletpane.py +++ b/gramps/gui/widgets/grampletpane.py @@ -1140,7 +1140,7 @@ class GrampletPane(Gtk.ScrolledWindow): if filename and os.path.exists(filename): cp = configparser.ConfigParser() try: - cp.read(filename) + cp.read(filename, encoding='utf-8') except Exception as err: LOG.warning("Failed to load gramplets from %s because %s", filename, str(err))