diff options
author | David Robillard <d@drobilla.net> | 2022-06-15 12:59:59 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-06-16 09:34:51 -0400 |
commit | 6a9ad573fa63319d1fc389916ddd68bc899eab0a (patch) | |
tree | 74d2c5381485e9663099a7b354a8b7000dbf0830 /lv2specgen | |
parent | 076e70f57640c3718309a89f690683a030b4ffcb (diff) | |
download | lv2-6a9ad573fa63319d1fc389916ddd68bc899eab0a.tar.xz |
lv2specgen: Remove unused parameter
Diffstat (limited to 'lv2specgen')
-rwxr-xr-x | lv2specgen/lv2specgen.py | 4 |
1 files changed, 2 insertions, 2 deletions
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: |