/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 generate_docs.py

  • Committer: Ian Clatworthy
  • Date: 2009-06-16 12:54:50 UTC
  • mfrom: (4446 +trunk)
  • mto: (4447.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4448.
  • Revision ID: ian.clatworthy@canonical.com-20090616125450-a0nzs1pyoo2nybd1
merge bzr.dev r4446

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
Run "%(prog)s --help" for the option reference.
34
34
"""
35
35
 
 
36
import bzrlib.commands
36
37
import sys
37
38
from optparse import OptionParser
38
39
 
68
69
    if len(args) != 2:
69
70
        parser.print_help()
70
71
        sys.exit(1)
 
72
    
 
73
    bzrlib.commands.install_bzr_command_hooks()
71
74
 
72
75
    infogen_type = args[1]
73
76
    infogen_mod = tools.doc_generate.get_module(infogen_type)