~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: 2008-05-07 08:48:35 UTC
  • mfrom: (3408.3.1 branch_conf)
  • Revision ID: pqm@pqm.ubuntu.com-20080507084835-066pb8ddwett0ne3
(mbp) Remove erroneous handling of branch.conf for RemoteBranch

Show diffs side-by-side

added added

removed removed

Lines of Context:
890
890
class TreeConfig(IniBasedConfig):
891
891
    """Branch configuration data associated with its contents, not location"""
892
892
 
 
893
    # XXX: Really needs a better name, as this is not part of the tree! -- mbp 20080507
 
894
 
893
895
    def __init__(self, branch):
894
896
        transport = branch.control_files._transport
895
897
        self._config = TransportConfig(transport, 'branch.conf')