sphinx/sphinx-web.py

18 lines
420 B
Python
Raw Normal View History

2007-07-23 04:02:25 -05:00
# -*- coding: utf-8 -*-
"""
Sphinx - Python documentation webserver
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: 2007-2008 by Armin Ronacher, Georg Brandl.
:license: BSD.
2007-07-23 04:02:25 -05:00
"""
2007-08-09 04:19:37 -05:00
import sys
2007-07-23 04:02:25 -05:00
if __name__ == '__main__':
2008-03-16 06:44:35 -05:00
print 'sphinx.web currently doesn\'t work -- it will undergo a ' \
'serious rewrite soon.'
sys.exit()
2007-08-09 04:19:37 -05:00
from sphinx.web import main
2007-07-23 04:02:25 -05:00
sys.exit(main(sys.argv))