254
250
This is the base class for all errors that ConfigObj raises.
255
251
It is a subclass of SyntaxError.
257
def __init__(self, msg='', line_number=None, line=''):
253
def __init__(self, message='', line_number=None, line=''):
259
255
self.line_number = line_number
264
260
class NestingError(ConfigObjError):