~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Aaron Bentley
  • Date: 2009-08-14 18:17:15 UTC
  • mto: (4603.1.22 shelve-editor)
  • mto: This revision was merged to the branch mainline in revision 4795.
  • Revision ID: aaron@aaronbentley.com-20090814181715-59qnhbov2stgzqt2
Allow configuring change editor.

Show diffs side-by-side

added added

removed removed

Lines of Context:
321
321
        else:
322
322
            input = file
323
323
        try:
324
 
            self._parser = ConfigObj(input, encoding='utf-8')
 
324
            self._parser = ConfigObj(input, encoding='utf-8',
 
325
            options={'interpolation': False})
325
326
        except configobj.ConfigObjError, e:
326
327
            raise errors.ParseConfigError(e.errors, e.config.filename)
327
328
        return self._parser