~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help.py

  • Committer: Vincent Ladeuil
  • Date: 2010-12-02 15:48:12 UTC
  • mto: This revision was merged to the branch mainline in revision 5556.
  • Revision ID: v.ladeuil+lp@free.fr-20101202154812-fxuav78fk7u24vh6
Tags: bzr-2.3b4
ReleaseĀ 2.3b4

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    help_topics,
31
31
    osutils,
32
32
    plugin,
33
 
    symbol_versioning,
34
33
    )
35
34
 
36
35
 
45
44
    try:
46
45
        topics = indices.search(topic)
47
46
        shadowed_terms = []
48
 
        for index, topic in topics[1:]:
 
47
        for index, topic_obj in topics[1:]:
49
48
            shadowed_terms.append('%s%s' % (index.prefix,
50
 
                topic.get_help_topic()))
 
49
                topic_obj.get_help_topic()))
51
50
        source = topics[0][1]
52
51
        outfile.write(source.get_help_text(shadowed_terms))
53
52
    except errors.NoHelpTopic: