~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/doc_generate/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-06-19 11:01:17 UTC
  • mfrom: (4070.11.16 249908-doc-generate)
  • Revision ID: pqm@pqm.ubuntu.com-20090619110117-rhph89w2k9gavp24
(mbp) various tweaks to doc generation

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
 
 
3
 
# Copyright 2005 Canonical Ltd.
4
 
# Written by Hans Ulrich Niedermann
 
1
# Copyright (C) 2005 Canonical Ltd
5
2
#
6
3
# This program is free software; you can redistribute it and/or modify
7
4
# it under the terms of the GNU General Public License as published by
17
14
# along with this program; if not, write to the Free Software
18
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
16
 
20
 
"""tools/doc_generate/__init__.py - main program for bzr information generation stuff"""
21
17
 
22
18
import sys
23
19
 
24
20
 
25
21
def get_module(target):
26
 
    mod_name = "tools.doc_generate.autodoc_%s" % (target)
 
22
    mod_name = "bzrlib.doc_generate.autodoc_%s" % (target)
27
23
    mod = __import__(mod_name)
28
24
    components = mod_name.split('.')
29
25
    for comp in components[1:]: