/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/help_topics.py

Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
http://bazaar-vcs.org/
106
106
 
107
107
Basic commands:
108
 
 
109
108
  bzr init           makes this directory a versioned branch
110
109
  bzr branch         make a copy of another branch
111
110
 
132
131
                        "Explain how to use --revision")
133
132
topic_registry.register('basic', _basic_help, "Basic commands")
134
133
topic_registry.register('topics', _help_on_topics, "Topics list")
 
134
def get_format_topic(topic):
 
135
    from bzrlib import bzrdir
 
136
    return bzrdir.format_registry.help_topic(topic)
 
137
topic_registry.register('formats', get_format_topic, 'Directory formats')