/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: Martin Pool
  • Date: 2008-05-07 06:03:09 UTC
  • mto: This revision was merged to the branch mainline in revision 3411.
  • Revision ID: mbp@sourcefrog.net-20080507060309-3z69hj7on7cud6wb
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')