/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 doc_generate/__init__.py

  • Committer: James Blackwell
  • Date: 2005-12-12 00:15:09 UTC
  • mto: (1185.50.63 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1554.
  • Revision ID: jblack@pluto-20051212001509-a28b6c6e9618d973
Fixing up autodoc

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
import sys
26
26
 
27
27
def generate(target):
28
 
    mod_name = "autodoc_%s" % (target)
 
28
    mod_name = "doc_generate.autodoc_%s" % (target)
29
29
    mod = __import__(mod_name)
30
30
    components = mod_name.split('.')
31
31
    for comp in components[1:]: