/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

Fix various Git issues: allow_collaboration for GitLab, gopkg.in access, error reporting.

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

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