/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: Jelmer Vernooij
  • Date: 2020-03-25 20:16:28 UTC
  • mto: (7490.7.8 work)
  • mto: This revision was merged to the branch mainline in revision 7501.
  • Revision ID: jelmer@jelmer.uk-20200325201628-dc6t7uqo1r56d1e2
Various git fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
722
722
            raise NotGitRepository()
723
723
        elif response.status != 200:
724
724
            raise GitProtocolError("unexpected http resp %d for %s" %
725
 
                                   (response.code, url))
 
725
                                   (response.status, url))
726
726
 
727
727
        # TODO: Optimization available by adding `preload_content=False` to the
728
728
        # request and just passing the `read` method on instead of going via