summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-15 16:14:15 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-15 16:14:15 -0800
commitaedb6ca8cffca7270700aaddcf82bf616030893c (patch)
tree7cbc23d4b9b4970f352b117e1e5ae5b48da921f4 /tools
parentc74b87f9bbdf8a147b892bd0ac48dbd01a0297cf (diff)
Fixed template path in tools/makespec.py.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/makespec.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/makespec.py b/tools/makespec.py
index 84663f2..b031208 100755
--- a/tools/makespec.py
+++ b/tools/makespec.py
@@ -118,7 +118,7 @@ metadata = parseYaml(yaml)
if specformat == "markdown":
sys.stdout.write(yaml + '\n\n' + mdtext)
elif specformat == "html":
- with open("template.html", "r", encoding="utf-8") as templatefile:
+ with open("tools/template.html", "r", encoding="utf-8") as templatefile:
template = Template(templatefile.read())
toclines = []
for section in sections: