summaryrefslogtreecommitdiff
path: root/tools/makespec.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/makespec.py')
-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: