/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/config.py

  • Committer: Aaron Bentley
  • Date: 2009-10-31 01:43:48 UTC
  • mto: (4603.1.22 shelve-editor)
  • mto: This revision was merged to the branch mainline in revision 4795.
  • Revision ID: aaron@aaronbentley.com-20091031014348-4iz0cqmvqqi6c6qz
Restore ConfigObj interpolation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
330
330
        else:
331
331
            input = file
332
332
        try:
333
 
            self._parser = ConfigObj(input, encoding='utf-8',
334
 
                                     options={'interpolation': False})
 
333
            self._parser = ConfigObj(input, encoding='utf-8')
335
334
        except configobj.ConfigObjError, e:
336
335
            raise errors.ParseConfigError(e.errors, e.config.filename)
337
336
        return self._parser