~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Robert Collins
  • Date: 2007-04-23 00:24:53 UTC
  • mto: This revision was merged to the branch mainline in revision 2441.
  • Revision ID: robertc@robertcollins.net-20070423002453-6mw8b5sexbmlqer9
Review feedback and put help.command_usage back in as a deprecated function.

Show diffs side-by-side

added added

removed removed

Lines of Context:
271
271
            raise NotImplementedError("sorry, no detailed help yet for %r" % self.name())
272
272
 
273
273
        result = ""
274
 
        result += 'usage:%s\n' % self._usage()
 
274
        result += 'usage: %s\n' % self._usage()
275
275
 
276
276
        if self.aliases:
277
277
            result += 'aliases:\n'