~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-31 00:43:21 UTC
  • mfrom: (1551.2.51 win32fixes)
  • Revision ID: pqm@pqm.ubuntu.com-20060331004321-2171d32febcbfe4d
Various fixes for win32

Show diffs side-by-side

added added

removed removed

Lines of Context:
401
401
        elif location + '/' in self._get_parser():
402
402
            location = location + '/'
403
403
        self._get_parser()[location][option]=value
404
 
        self._get_parser().write()
 
404
        self._get_parser().write(file(self._get_filename(), 'wb'))
405
405
 
406
406
 
407
407
class BranchConfig(Config):