/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/smart/branch.py

Remove more cases of getting transport via control_files

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
        # allow the client to get the configuration without needing vfs
87
87
        # access.
88
88
        try:
89
 
            content = branch.control_files._transport.get_bytes('branch.conf')
 
89
            content = branch._transport.get_bytes('branch.conf')
90
90
        except errors.NoSuchFile:
91
91
            content = ''
92
92
        return SuccessfulSmartServerResponse( ('ok', ), content)