/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/util/configobj/configobj.py

  • Committer: Andrew Bennetts
  • Date: 2008-10-01 06:10:17 UTC
  • mfrom: (3753 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3755.
  • Revision ID: andrew.bennetts@canonical.com-20081001061017-z97p3m0n9qqjzklf
Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

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