From 74f10d4e420cf711ccc824a3029b01a213a0dec2 Mon Sep 17 00:00:00 2001
From: David Robillard <d@drobilla.net>
Date: Wed, 15 Jun 2022 13:00:26 -0400
Subject: 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.
---
 lv2specgen/lv2specgen.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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,
     )
-- 
cgit v1.2.1