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,
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.')]
203
200
takes_args = ['submit_branch?']