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

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-09-14 10:29:57 UTC
  • mfrom: (7058.4.37 drop-flapping)
  • Revision ID: breezy.the.bot@gmail.com-20180914102957-825gvjl3w7rja462
Drop python3.flapping.

Merged from https://code.launchpad.net/~jelmer/brz/drop-flapping/+merge/353460

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
            return False
183
183
        if url.startswith('lp:'):
184
184
            return True
185
 
        regex = re.compile('([a-z]*\+)*(bzr\+ssh|http)'
 
185
        regex = re.compile('([a-z]*\\+)*(bzr\\+ssh|http)'
186
186
                           '://bazaar.*.launchpad.net')
187
187
        return bool(regex.match(url))
188
188