/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/__init__.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2020-01-11 16:22:12 UTC
  • mfrom: (7408.3.2 propose-core)
  • Revision ID: breezy.the.bot@gmail.com-20200111162212-nbf6wtjz2lxryuf2
Move the propose module into core.

Merged from https://code.launchpad.net/~jelmer/brz/propose-core/+merge/374757

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
plugin_cmds.register_lazy(
31
31
    "cmd_my_merge_proposals", ["my-proposals"],
32
32
    __name__ + ".cmds")
 
33
 
 
34
 
 
35
from ...propose import hosters
 
36
hosters.register_lazy(
 
37
    "launchpad", "breezy.plugins.propose.launchpad",
 
38
    "Launchpad")
 
39
hosters.register_lazy(
 
40
    "github", "breezy.plugins.propose.github",
 
41
    "GitHub")
 
42
hosters.register_lazy(
 
43
    "gitlab", "breezy.plugins.propose.gitlabs",
 
44
    "GitLab")