~jelmer/brz/byov-trunk

« back to all changes in this revision

Viewing changes to breezy/plugins/launchpad/__init__.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2020-02-19 03:16:24 UTC
  • mfrom: (7492.2.1 propose-more)
  • Revision ID: breezy.the.bot@gmail.com-20200219031624-994l6d0xqb8be6yh
Drop the 'brz lp-propose' command in favour of 'brz propose'.

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    launchpad-login: Show or set the Launchpad user ID
31
31
    launchpad-open: Open a Launchpad branch page in your web browser
32
32
 
33
 
As well as the following deprecated command:
34
 
 
35
 
    lp-propose-merge: Propose merging a branch on Launchpad
36
 
         (deprecated in favour of the more generic 'brz propose-merge')
37
 
 
38
33
"""
39
34
 
40
35
# The XMLRPC server address can be overridden by setting the environment
60
55
    ("cmd_launchpad_open", ["lp-open"]),
61
56
    ("cmd_launchpad_login", ["lp-login"]),
62
57
    ("cmd_launchpad_logout", ["lp-logout"]),
63
 
    ("cmd_lp_propose_merge", ["lp-submit", "lp-propose"]),
64
58
        ("cmd_lp_find_proposal", [])]:
65
59
    plugin_cmds.register_lazy(klsname, aliases,
66
60
                              "breezy.plugins.launchpad.cmds")