gramps/src/Config/__init__.py

42 lines
1.2 KiB
Python
Raw Normal View History

2005-01-06 19:26:54 +00:00
#
# Gramps - a GTK+/GNOME based genealogy program
#
2006-03-03 00:10:52 +00:00
# Copyright (C) 2004-2006 Donald N. Allingham
2005-01-06 19:26:54 +00:00
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
2006-03-03 00:10:52 +00:00
# $Id: __init__.py 5872 2006-02-03 15:49:59Z hippy $
"""
This package implements access to GRAMPS configuration.
It provides the choice between different storage backends.
"""
2005-01-06 19:26:54 +00:00
2006-03-21 06:33:59 +00:00
import const
2006-04-24 21:04:01 +00:00
from _GrampsConfigKeys import *
2006-03-21 06:33:59 +00:00
2006-04-24 21:04:01 +00:00
#if const.no_gconf:
if True:
2006-03-03 00:10:52 +00:00
from _GrampsIniKeys import *
2006-03-21 06:33:59 +00:00
else:
try:
from _GrampsGconfKeys import *
except:
from _GrampsIniKeys import *
2006-04-24 21:04:01 +00:00