/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
2399.1.8 by John Arbash Meinel
Change lazy_import to allow proxying when necessary.
1
#!/usr/bin/env python
2
#
3
# Call the command line interface for Epydoc.
4
#
5
6622.1.16 by Jelmer Vernooij
s/bzr/brz/
6
"""Wrapper around Epydoc that just makes it understand brz's lazy imports."""
2399.1.8 by John Arbash Meinel
Change lazy_import to allow proxying when necessary.
7
8
# This will enable the lazy_import compatibility code
6622.1.16 by Jelmer Vernooij
s/bzr/brz/
9
import brz_epydoc_uid
2399.1.8 by John Arbash Meinel
Change lazy_import to allow proxying when necessary.
10
11
from epydoc.cli import cli
12
cli()
13
14