~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/doc_generate/__init__.py

Minor pep8 cleanups to previous revision

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# along with this program; if not, write to the Free Software
18
18
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
19
 
20
 
"""bzrinitgen/__init__.py - main program for bzr information generation stuff
21
 
 
22
 
"""
23
 
 
 
20
"""tools/doc_generate/__init__.py - main program for bzr information generation stuff"""
24
21
 
25
22
import sys
26
23
 
 
24
 
27
25
def get_module(target):
28
26
    mod_name = "tools.doc_generate.autodoc_%s" % (target)
29
27
    mod = __import__(mod_name)