~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Robert Collins
  • Date: 2007-04-20 03:07:01 UTC
  • mto: This revision was merged to the branch mainline in revision 2441.
  • Revision ID: robertc@robertcollins.net-20070420030701-2val6cjy3eocu77y
Add prefixes to HelpIndexes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
719
719
class HelpCommandIndex(object):
720
720
    """A index for bzr help that returns commands."""
721
721
 
 
722
    def __init__(self):
 
723
        self.prefix = 'commands/'
 
724
 
722
725
    def get_topics(self, topic):
723
726
        """Search for topic amongst commands.
724
727