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

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2019-06-15 14:25:08 UTC
  • mfrom: (7296.10.9 custom-gitlab)
  • Revision ID: breezy.the.bot@gmail.com-20190615142508-8urao0ot666rye66
Don't depend on the gitlab library for gitlab operations.

Instead, just use Breezy's built-in HTTP support.

Merged from https://code.launchpad.net/~jelmer/brz/custom-gitlab/+merge/367620

Show diffs side-by-side

added added

removed removed

Lines of Context:
203
203
        return plausible_launchpad_url(branch.user_url)
204
204
 
205
205
    @classmethod
206
 
    def probe_from_url(cls, url):
 
206
    def probe_from_url(cls, url, possible_transports=None):
207
207
        if plausible_launchpad_url(url):
208
208
            return Launchpad()
209
209
        raise UnsupportedHoster(url)