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