aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-12-28 20:43:59 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-12-28 20:43:59 -0800
commit8f99dbd660955be6b7ddf201aca102d422619fab (patch)
tree0a1f180970609a17d60b7ec7c8fdc699fed0ac9e /tools
parentdc13108b72ff284592d6783745221813af1611a2 (diff)
Fixed small regression in 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 eb52a60..0ef924a 100755
--- a/tools/makespec.py
+++ b/tools/makespec.py
@@ -121,7 +121,7 @@ with open('spec.txt', 'r', encoding='utf-8') as spec:
mdlines.append(ln)
mdtext = re.sub(r'\[([^]]*)\]\(@([^)]*)\)', replaceAnchor,
- ''.join(mdlines) + '\n\n' + '\n'.join(refs) + '\n')
+ ''.join(mdlines)) + '\n\n' + '\n'.join(refs) + '\n'
yaml = ''.join(yamllines)
metadata = parseYaml(yaml)