* src/gramps_main.py (__init__): Avoid TypeError in schema error message
svn: r4434
This commit is contained in:
parent
9c92bf317f
commit
62af2a64fc
@ -1,3 +1,7 @@
|
|||||||
|
2005-04-27 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
||||||
|
* src/gramps_main.py (__init__): Avoid TypeError in schema error
|
||||||
|
message
|
||||||
|
|
||||||
2005-04-26 Alex Roitman <shura@gramps-project.org>
|
2005-04-26 Alex Roitman <shura@gramps-project.org>
|
||||||
* NEWS, configure.in, src/EditPerson.py, src/EditSource.py,
|
* NEWS, configure.in, src/EditPerson.py, src/EditSource.py,
|
||||||
src/FamilyView.py, src/ImageSelect.py, src/Marriage.py,
|
src/FamilyView.py, src/ImageSelect.py, src/Marriage.py,
|
||||||
|
@ -164,7 +164,7 @@ class Gramps(GrampsDBCallback.GrampsDBCallback):
|
|||||||
|
|
||||||
except Errors.GConfSchemaError, val:
|
except Errors.GConfSchemaError, val:
|
||||||
ErrorDialog(_("Configuration error"),
|
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."))
|
" Make sure the GConf schema of GRAMPS is properly installed."))
|
||||||
gtk.main_quit()
|
gtk.main_quit()
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user