2008-01-12 Raphael Ackermann <raphael.ackermann@gmail.com>

* src/Config/__init__.py: revert wrong indentation changes

svn: r9787
This commit is contained in:
Raphael Ackermann 2008-01-12 23:39:43 +00:00
parent 48df32fad1
commit 3dbb428759
2 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,6 @@
2008-01-12 Raphael Ackermann <raphael.ackermann@gmail.com>
* src/Config/__init__.py: revert wrong indentation changes
2008-01-12 Benny Malengier <benny.malengier@gramps-project.org> 2008-01-12 Benny Malengier <benny.malengier@gramps-project.org>
* src/const.py.in: new manual constant keys * src/const.py.in: new manual constant keys
* src/GrampsDisplay.py: show wiki manual, allow webpage and * src/GrampsDisplay.py: show wiki manual, allow webpage and

View File

@ -23,6 +23,7 @@
""" """
This package implements access to GRAMPS configuration. This package implements access to GRAMPS configuration.
It provides the choice between different storage backends. It provides the choice between different storage backends.
""" """
from _GrampsConfigKeys import * from _GrampsConfigKeys import *
@ -37,11 +38,11 @@ def __upgrade_gconf():
data = GconfKeys.get(key) data = GconfKeys.get(key)
set(key, data) set(key, data)
if not os.path.exists(INIFILE): if not os.path.exists(INIFILE):
try: try:
__upgrade_gconf() __upgrade_gconf()
except ImportError: except ImportError:
print "Cannot upgrade GCONF settings" print "Cannot upgrade GCONF settings"