/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Ian Clatworthy
  • Date: 2009-02-26 06:15:24 UTC
  • mto: (4157.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 4158.
  • Revision ID: ian.clatworthy@canonical.com-20090226061524-kpy3n8na3mk4ubuy
help xxx is full help; xxx -h is concise help

Show diffs side-by-side

added added

removed removed

Lines of Context:
3752
3752
    _see_also = ['topics']
3753
3753
    takes_options = [
3754
3754
            Option('long', 'Show help on all commands.'),
3755
 
            custom_help('verbose',
3756
 
                help='Show detailed help including Description and Examples.'),
3757
3755
            ]
3758
3756
    takes_args = ['topic?']
3759
3757
    aliases = ['?', '--help', '-?', '-h']
3760
3758
 
3761
3759
    @display_command
3762
 
    def run(self, topic=None, long=False, verbose=False):
 
3760
    def run(self, topic=None, long=False):
3763
3761
        import bzrlib.help
3764
3762
        if topic is None and long:
3765
3763
            topic = "commands"
3766
 
        bzrlib.help.help(topic, verbose=verbose)
 
3764
        bzrlib.help.help(topic)
3767
3765
 
3768
3766
 
3769
3767
class cmd_shell_complete(Command):