/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/plugins/gitlab/hoster.py

  • Committer: Jelmer Vernooij
  • Date: 2020-07-15 22:21:03 UTC
  • mto: (7490.40.58 work)
  • mto: This revision was merged to the branch mainline in revision 7519.
  • Revision ID: jelmer@jelmer.uk-20200715222103-isuxb8sc026z2845
Fix syntax.

Show diffs side-by-side

added added

removed removed

Lines of Context:
423
423
        if response.status == 403:
424
424
            raise errors.PermissionDenied(response.text)
425
425
        if response.status != 200:
426
 
            raise errors.UnexpectedHttpStatus(path, response.status
 
426
            raise errors.UnexpectedHttpStatus(path, response.status)
427
427
        return json.loads(response.data)
428
428
 
429
429
    def _list_projects(self, owner):