aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-06-15 13:00:26 -0400
committerDavid Robillard <d@drobilla.net>2022-06-16 09:34:51 -0400
commit74f10d4e420cf711ccc824a3029b01a213a0dec2 (patch)
tree975fc3963938a16e868753a1877038c4b61c957e
parent6a9ad573fa63319d1fc389916ddd68bc899eab0a (diff)
downloadlv2-74f10d4e420cf711ccc824a3029b01a213a0dec2.tar.xz
lv2specgen: Fix invalid variable reference
This used to be short for "base", and was derived from the basename of the spec (like "worker"). At some point that was replaced by "stem" but this call somehow wasn't updated.
-rwxr-xr-xlv2specgen/lv2specgen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py
index c5b0e4e..c7b9132 100755
--- a/lv2specgen/lv2specgen.py
+++ b/lv2specgen/lv2specgen.py
@@ -1315,7 +1315,7 @@ def writeIndex(model, index_path, root_path, root_uri, online):
# Specification (comment is to act as a sort key)
row = '<tr><!-- %s --><td><a rel="rdfs:seeAlso" href="%s">%s</a></td>' % (
- b,
+ stem,
target,
name,
)