summaryrefslogtreecommitdiff
path: root/sphinx-web.py
blob: c21e83304b7f83a1be0fea52812c298a07972d58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- coding: utf-8 -*-
"""
    Sphinx - Python documentation webserver
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    :copyright: 2007-2008 by Armin Ronacher, Georg Brandl.
    :license: BSD.
"""

import sys

if __name__ == '__main__':
    print 'sphinx.web currently doesn\'t work -- it will undergo a ' \
          'serious rewrite soon.'
    sys.exit()
    from sphinx.web import main
    sys.exit(main(sys.argv))