~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2007-07-12 21:00:16 UTC
  • Revision ID: abentley@panoramicfeedback.com-20070712210016-ebhqozm8zr0h5r2r
Fix option grammar in baz-import-branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
638
638
    are incompatible.
639
639
    """
640
640
    takes_args = ['to_location', 'from_branch?', 'reuse_history*']
641
 
    takes_options = ['verbose', Option('max-count', type=int),
 
641
    takes_options = ['verbose', 
 
642
                     Option('max-count', type=int, 
 
643
                     help='Maximim revisions to import at once.'),
642
644
                     Option('encoding', type=str,
643
645
                     help='Force encoding to specified value.  See WARNING.')]
644
646