/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: Jelmer Vernooij
  • Date: 2020-06-01 19:35:12 UTC
  • mfrom: (7490.29.10 work)
  • mto: This revision was merged to the branch mainline in revision 7507.
  • Revision ID: jelmer@jelmer.uk-20200601193512-yx77edrbrs12d0qy
Merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
plugin_cmds.register_lazy("cmd_land_merge_proposal", ["land"], __name__ + ".cmds")
24
24
plugin_cmds.register_lazy("cmd_publish_derived", ['publish'], __name__ + ".cmds")
25
25
plugin_cmds.register_lazy("cmd_find_merge_proposal", ['find-proposal'], __name__ + ".cmds")
26
 
plugin_cmds.register_lazy("cmd_github_login", ["gh-login"], __name__ + ".cmds")
27
 
plugin_cmds.register_lazy("cmd_gitlab_login", ["gl-login"], __name__ + ".cmds")
28
26
plugin_cmds.register_lazy(
29
27
    "cmd_my_merge_proposals", ["my-proposals"],
30
28
    __name__ + ".cmds")
35
33
    "launchpad", "breezy.plugins.propose.launchpad",
36
34
    "Launchpad")
37
35
hosters.register_lazy(
38
 
    "github", "breezy.plugins.propose.github",
39
 
    "GitHub")
40
 
hosters.register_lazy(
41
 
    "gitlab", "breezy.plugins.propose.gitlabs",
42
 
    "GitLab")
43
36
 
44
37
 
45
38
def test_suite():