From 62af2a64fcef6002b9a164f0b606118457c95185 Mon Sep 17 00:00:00 2001 From: Martin Hawlisch Date: Wed, 27 Apr 2005 18:30:57 +0000 Subject: [PATCH] * src/gramps_main.py (__init__): Avoid TypeError in schema error message svn: r4434 --- gramps2/ChangeLog | 4 ++++ gramps2/src/gramps_main.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index efb3ad5b7..7921d37bf 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,7 @@ +2005-04-27 Martin Hawlisch + * src/gramps_main.py (__init__): Avoid TypeError in schema error + message + 2005-04-26 Alex Roitman * NEWS, configure.in, src/EditPerson.py, src/EditSource.py, src/FamilyView.py, src/ImageSelect.py, src/Marriage.py, diff --git a/gramps2/src/gramps_main.py b/gramps2/src/gramps_main.py index e92f6c3f1..02ebc84dc 100755 --- a/gramps2/src/gramps_main.py +++ b/gramps2/src/gramps_main.py @@ -164,7 +164,7 @@ class Gramps(GrampsDBCallback.GrampsDBCallback): except Errors.GConfSchemaError, val: ErrorDialog(_("Configuration error"), - val + _("\n\nPossibly the installation of GRAMPS was incomplete." + str(val) + _("\n\nPossibly the installation of GRAMPS was incomplete." " Make sure the GConf schema of GRAMPS is properly installed.")) gtk.main_quit() return