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

  • Committer: Jelmer Vernooij
  • Date: 2020-02-07 02:14:30 UTC
  • mto: This revision was merged to the branch mainline in revision 7492.
  • Revision ID: jelmer@jelmer.uk-20200207021430-m49iq3x4x8xlib6x
Drop python2 support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    Option,
36
36
    ListOption,
37
37
    )
38
 
from ...sixish import (
39
 
    text_type,
40
 
    )
41
38
 
42
39
 
43
40
class cmd_launchpad_open(Command):
191
188
    hidden = True
192
189
    takes_options = [Option('staging',
193
190
                            help='Propose the merge on staging.'),
194
 
                     Option('message', short_name='m', type=text_type,
 
191
                     Option('message', short_name='m', type=str,
195
192
                            help='Commit message.'),
196
193
                     Option('approve',
197
194
                            help=('Mark the proposal as approved immediately, '
198
195
                                  'setting the approved revision to tip.')),
199
196
                     Option('fixes', 'The bug this proposal fixes.', str),
200
 
                     ListOption('review', short_name='R', type=text_type,
 
197
                     ListOption('review', short_name='R', type=str,
201
198
                                help='Requested reviewer and optional type.')]
202
199
 
203
200
    takes_args = ['submit_branch?']