From 3259255c3892ead31deda59e64474038aa84f24f Mon Sep 17 00:00:00 2001 From: John Ralls Date: Sun, 11 May 2014 22:26:23 -0400 Subject: [PATCH] 7519: "Family Tree Directory Path" with accented characters Take 2. --- gramps/gui/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gui/configure.py b/gramps/gui/configure.py index af6d32296..a320315e7 100644 --- a/gramps/gui/configure.py +++ b/gramps/gui/configure.py @@ -1390,7 +1390,7 @@ class GrampsPreferences(ConfigureDialog): f.destroy() def set_dbpath(self, *obj): - path = self.dbpath_entry.get_text().strip() + path = conv_to_unicode(self.dbpath_entry.get_text().strip()) config.set('behavior.database-path', path) def select_dbpath(self, *obj):