Move converter to its own dir.

This commit is contained in:
Georg Brandl 2008-03-18 19:34:11 +00:00
parent d3c0de7d62
commit a1a6016f0f

View File

@ -1,25 +0,0 @@
# -*- coding: utf-8 -*-
"""
Convert the Python documentation to Sphinx
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: 2007-2008 by Georg Brandl.
:license: BSD.
"""
import sys
import os
from converter import convert_dir
if __name__ == '__main__':
try:
rootdir = sys.argv[1]
destdir = os.path.abspath(sys.argv[2])
except IndexError:
print "usage: convert.py docrootdir destdir"
sys.exit()
assert os.path.isdir(os.path.join(rootdir, 'texinputs'))
os.chdir(rootdir)
convert_dir(destdir, *sys.argv[3:])