From aedb6ca8cffca7270700aaddcf82bf616030893c Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 15 Jan 2015 16:14:15 -0800 Subject: Fixed template path in tools/makespec.py. --- tools/makespec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') 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: -- cgit v1.2.3