/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: 2017-08-26 15:41:03 UTC
  • mfrom: (6754.5.1 other-check)
  • Revision ID: jelmer@jelmer.uk-20170826154103-wqan1wlizjy0725w
Merge lp:~jelmer/brz/other-check.

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
    )
38
41
 
39
42
 
40
43
class cmd_launchpad_open(Command):
181
184
 
182
185
    takes_options = [Option('staging',
183
186
                            help='Propose the merge on staging.'),
184
 
                     Option('message', short_name='m', type=unicode,
 
187
                     Option('message', short_name='m', type=text_type,
185
188
                            help='Commit message.'),
186
189
                     Option('approve',
187
190
                            help=('Mark the proposal as approved immediately, '
188
191
                                  'setting the approved revision to tip.')),
189
192
                     Option('fixes', 'The bug this proposal fixes.', str),
190
 
                     ListOption('review', short_name='R', type=unicode,
 
193
                     ListOption('review', short_name='R', type=text_type,
191
194
                            help='Requested reviewer and optional type.')]
192
195
 
193
196
    takes_args = ['submit_branch?']