Don't fail horribly if the user doesn't have a config file

This commit is contained in:
Thomas Hurst 2008-11-01 10:07:58 +00:00
parent 434c253237
commit c3c6e3713d
1 changed files with 3 additions and 3 deletions

View File

@ -234,11 +234,11 @@ class TerminatorConfValuestoreRC (TerminatorConfValuestore):
def call_parser (self, is_init = False):
dbg (" VS_RCFile: parsing config file")
if not os.path.exists (self.rcfilename):
err (" VS_RCFile: %s does not exist" % self.rcfilename)
ini = ConfigFile(self.rcfilename, self._rc_set_callback())
try:
ini = ConfigFile(self.rcfilename, self._rc_set_callback())
ini.parse()
except IOError, e:
dbg (" VS_RCFile: unable to open %s (%s)" % (self.rcfilename, repr(e)))
except ParsedWithErrors, e:
# We don't really want to produce an error dialog every run
if not is_init: