From 6a9ad573fa63319d1fc389916ddd68bc899eab0a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 15 Jun 2022 12:59:59 -0400 Subject: lv2specgen: Remove unused parameter --- lv2specgen/lv2specgen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lv2specgen') diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index a994017..c5b0e4e 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -1246,7 +1246,7 @@ def load_tags(path, docdir): return linkmap -def writeIndex(model, specloc, index_path, root_path, root_uri, online): +def writeIndex(model, index_path, root_path, root_uri, online): # Get extension URI ext_node = model.value(None, rdf.type, lv2.Specification) if not ext_node: @@ -1570,7 +1570,7 @@ def specgen( # Write index row if index_path is not None: - writeIndex(m, specloc, index_path, root_path, root_uri, opts["online"]) + writeIndex(m, index_path, root_path, root_uri, opts["online"]) # Validate complete output page try: -- cgit v1.2.1