Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
2 | """ | ||||
3 | Sphinx - Python documentation webserver | ||||
4 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||
5 | |||||
6 | :copyright: 2007 by Georg Brandl. | ||||
7 | :license: Python license. | ||||
8 | """ | ||||
9 | |||||
10 | import sys | ||||
11 | |||||
12 | if __name__ == '__main__': | ||||
13 | from sphinx.web import main | ||||
14 | sys.exit(main(sys.argv)) |