~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/export_pot.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:
28
28
    errors,
29
29
    help_topics,
30
30
    plugin,
 
31
    help,
31
32
    )
32
33
from bzrlib.trace import (
33
34
    mutter,
234
235
                    outf,
235
236
                    'dummy/help_topics/'+key+'/detail.txt',
236
237
                    1, doc)
237
 
 
 
238
        elif callable(doc): # help topics from files
 
239
            _poentry_per_paragraph(
 
240
                    outf,
 
241
                    'en/help_topics/'+key+'.txt',
 
242
                    1, doc(key))
238
243
        summary = topic_registry.get_summary(key)
239
244
        if summary is not None:
240
245
            _poentry(outf, 'dummy/help_topics/'+key+'/summary.txt',
246
251
    _standard_options(outf)
247
252
    _command_helps(outf)
248
253
    _error_messages(outf)
249
 
    # disable exporting help topics until we decide  how to translate it.
250
 
    #_help_topics(outf)
 
254
    _help_topics(outf)