~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Vincent Ladeuil
  • Date: 2011-06-27 15:36:58 UTC
  • mto: (5993.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 5994.
  • Revision ID: v.ladeuil+lp@free.fr-20110627153658-gr83h2ebsccaf5co
Tweak test_help some more.

Show diffs side-by-side

added added

removed removed

Lines of Context:
512
512
 
513
513
        # The header is the purpose and usage
514
514
        result = ""
515
 
        result += i18n.gettext(':Purpose: %s\n') % (purpose,)
 
515
        result += gettext(':Purpose: %s\n') % (purpose,)
516
516
        if usage.find('\n') >= 0:
517
517
            result += gettext(':Usage:\n%s\n') % (usage,)
518
518
        else: