~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2007-07-12 21:13:02 UTC
  • mto: This revision was merged to the branch mainline in revision 637.
  • Revision ID: abentley@panoramicfeedback.com-20070712211302-auopgln9oycar1od
Update option grammar

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
class cmd_heads(Command):
31
31
    """Show all revisions in a repository not having descendants.
32
32
    """
33
 
    takes_options = [Option('by-date', help='Sort heads by date (descending)'),
34
 
                     Option('all', help='Show all heads (dead and alive)'),
35
 
                     Option('dead-only', help='Show only dead heads'),
36
 
                     Option('tips', help='Show tips of all branches'),
37
 
                     Option('debug-time', help='Enable debug print of operations times'),
 
33
    takes_options = [Option('by-date',
 
34
                     help='Sort heads by date (descending).'),
 
35
                     Option('all', help='Show all heads (dead and alive).'),
 
36
                     Option('dead-only', help='Show only dead heads.'),
 
37
                     Option('tips', help='Show tips of all branches.'),
 
38
                     Option('debug-time',
 
39
                     help='Enable debug print of operations times.'),
38
40
                    ]
39
41
 
40
42
    encoding_type = "replace"