/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 breezy/git/remote.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2019-08-12 19:51:40 UTC
  • mfrom: (7380.1.2 more-git-fixes)
  • Revision ID: breezy.the.bot@gmail.com-20190812195140-guyldqnadc30atyj
Several more fixes for git merge proposals.

Merged from https://code.launchpad.net/~jelmer/brz/more-git-fixes/+merge/371172

Show diffs side-by-side

added added

removed removed

Lines of Context:
777
777
            client = transport._get_client()
778
778
        elif split_url.scheme in ("http", "https"):
779
779
            client = BzrGitHttpClient(transport)
780
 
        elif split_url.scheme in 'file':
 
780
        elif split_url.scheme in ('file', ):
781
781
            client = dulwich.client.LocalGitClient()
782
782
        else:
783
783
            raise NotBranchError(transport.base)