diff --git a/ChangeLog b/ChangeLog index 2e93c1585..7caea38cd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2008-01-12 Raphael Ackermann + * src/Config/__init__.py: revert wrong indentation changes + 2008-01-12 Benny Malengier * src/const.py.in: new manual constant keys * src/GrampsDisplay.py: show wiki manual, allow webpage and diff --git a/src/Config/__init__.py b/src/Config/__init__.py index 02ba04a22..580d5af0b 100644 --- a/src/Config/__init__.py +++ b/src/Config/__init__.py @@ -23,6 +23,7 @@ """ This package implements access to GRAMPS configuration. It provides the choice between different storage backends. + """ from _GrampsConfigKeys import * @@ -37,11 +38,11 @@ def __upgrade_gconf(): data = GconfKeys.get(key) set(key, data) - if not os.path.exists(INIFILE): - try: - __upgrade_gconf() - except ImportError: - print "Cannot upgrade GCONF settings" +if not os.path.exists(INIFILE): + try: + __upgrade_gconf() + except ImportError: + print "Cannot upgrade GCONF settings"