In getdef(), don't die when the section doesn't exist.

This commit is contained in:
Guido van Rossum 2000-03-06 14:43:20 +00:00
parent 074d6e1f56
commit 7f3cfd50fa
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
import os
import sys
from ConfigParser import ConfigParser, NoOptionError
from ConfigParser import ConfigParser, NoOptionError, NoSectionError
class IdleConfParser(ConfigParser):
@ -26,7 +26,7 @@ class IdleConfParser(ConfigParser):
"""Get an option value for given section or return default"""
try:
return self.get(sec, options, raw, vars)
except NoOptionError:
except (NoSectionError, NoOptionError):
return default
def getsection(self, section):