Correction after second code path test.

This commit is contained in:
Eric S. Raymond 2001-02-09 05:37:25 +00:00
parent 9eb54d9828
commit f296019cc5
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ class ConfigParser:
def getboolean(self, section, option):
v = self.get(section, option)
val = v.atoi()
val = int(v)
if val not in (0, 1):
raise ValueError, 'Not a boolean: %s' % v
return val