* src/Config/_GrampsIniKeys.py: Report error on invalid filename

* src/const.py.in: detect windows home directory before others

svn: r7216
This commit is contained in:
Brian Matherly
2006-08-20 21:52:49 +00:00
parent bc31162cc2
commit 3d3eda02a5
3 changed files with 18 additions and 4 deletions

View File

@@ -29,6 +29,7 @@ import time
import ConfigParser
import errno
import const
from QuestionDialog import ErrorDialog
from _GrampsConfigKeys import *
NL = "\n" # FIX: newlines on Mac/Windows, if different?
@@ -50,6 +51,15 @@ class IniKeyClient:
self.filename = filename
if self.filename and os.path.exists(filename):
self.data = self.load_ini(self.filename)
elif self.filename and not os.path.exists(filename):
try:
head, tail = os.path.split( filename )
os.makedirs( head )
except OSError, e:
ErrorDialog(_("Unable to load preferences from %s") %
self.filename,
_("Preferences will not be loaded or saved."))
self.filename = None
def notify_add(self, path, func):
"""