diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-01-15 16:14:15 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-01-15 16:14:15 -0800 |
commit | aedb6ca8cffca7270700aaddcf82bf616030893c (patch) | |
tree | 7cbc23d4b9b4970f352b117e1e5ae5b48da921f4 | |
parent | c74b87f9bbdf8a147b892bd0ac48dbd01a0297cf (diff) |
Fixed template path in tools/makespec.py.
-rwxr-xr-x | tools/makespec.py | 2 |
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: |