~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/__init__.py

  • Committer: Patch Queue Manager
  • Date: 2011-09-08 11:01:15 UTC
  • mfrom: (6123.1.16 gpg-typo)
  • Revision ID: pqm@cupuasso-20110908110115-gbb9benwkdksvzk5
(jelmer) Fix a typo (invalid format identifier) in an error message in
 bzrlib.gpg. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    config,
41
41
    osutils,
42
42
    registry,
 
43
    i18n,
43
44
    )
44
45
 
45
46
 
879
880
        result += _format_see_also(additional_see_also)
880
881
        if plain:
881
882
            result = help_as_plain_text(result)
 
883
        i18n.install()
 
884
        result = i18n.gettext_per_paragraph(result)
882
885
        return result
883
886
 
884
887
    def get_help_topic(self):