mirror of https://github.com/python/cpython
In getdef(), don't die when the section doesn't exist.
This commit is contained in:
parent
074d6e1f56
commit
7f3cfd50fa
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue