~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2007-07-12 20:45:50 UTC
  • Revision ID: abentley@panoramicfeedback.com-20070712204550-jkjhc8k39wunvzul
Fix shelf's message parameter

Show diffs side-by-side

added added

removed removed

Lines of Context:
246
246
    """
247
247
 
248
248
    takes_args = ['file*']
249
 
    takes_options = ['message', 'revision',
 
249
    takes_options = [Option('message',
 
250
            help='A message to associate with the shelved changes.',
 
251
            short_name='m'),
 
252
            'revision',
250
253
            Option('all', help='Shelve all changes without prompting'),
251
254
            Option('no-color', help='Never display changes in color')]
252
255