/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/plugins/launchpad/__init__.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
        """Yield possible external locations for the branch at 'location'."""
171
171
        yield location
172
172
        try:
173
 
            branch = _mod_branch.Branch.open(location)
 
173
            branch = _mod_branch.Branch.open_containing(location)[0]
174
174
        except NotBranchError:
175
175
            return
176
176
        branch_url = branch.get_public_branch()