aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/mkdocdeps.py
diff options
context:
space:
mode:
authorGravatar W. Trevor King <wking@tremily.us>2014-04-05 10:31:05 -0700
committerGravatar David Bremner <david@tethera.net>2014-04-21 21:31:36 +0900
commitb10b12da890d31819e411aec5158dca99359e830 (patch)
treeaf052861f6176f57b52e5d07425699530f271317 /doc/mkdocdeps.py
parentce0e3eeaca4522353148a1894cd3ce9e9122e2e7 (diff)
doc/mkdocdeps.py: Convert execfile to import
excefile is gone in Python 3 [1]. Instead of exec-ing the configuration, it's easier to insert the source directory in Python's path [2], and just import the configuration. With this change, mkdocdeps.py is compatible with both Python 2 and 3. [1]: https://docs.python.org/3.0/whatsnew/3.0.html#builtins [2]: https://docs.python.org/3/library/sys.html#sys.path
Diffstat (limited to 'doc/mkdocdeps.py')
-rw-r--r--doc/mkdocdeps.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/mkdocdeps.py b/doc/mkdocdeps.py
index 71bd1356..de1cbb8f 100644
--- a/doc/mkdocdeps.py
+++ b/doc/mkdocdeps.py
@@ -1,15 +1,16 @@
-from sys import argv
-srcdir = argv[1]
-builddir = argv[2]
-outfile = argv[3]
+import sys
-execfile(srcdir + '/conf.py')
+srcdir = sys.argv[1]
+builddir = sys.argv[2]
+outfile = sys.argv[3]
+sys.path.insert(0, srcdir)
+import conf
roff_files = []
rst_files = []
out=open(outfile,'w')
-for page in man_pages:
+for page in conf.man_pages:
rst_files = rst_files + ["{0:s}/{1:s}.rst".format(srcdir,page[0])]
roff_files = roff_files + ["{0:s}/man/{1:s}.{2:d}".format(builddir,page[0],page[4])]