aboutsummaryrefslogtreecommitdiffstats
path: root/lv2specgen/lv2specgen.py
diff options
context:
space:
mode:
Diffstat (limited to 'lv2specgen/lv2specgen.py')
-rwxr-xr-xlv2specgen/lv2specgen.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py
index da58e4f..0c5a87d 100755
--- a/lv2specgen/lv2specgen.py
+++ b/lv2specgen/lv2specgen.py
@@ -1515,9 +1515,9 @@ if __name__ == "__main__":
for d in _data_dirs():
path = os.path.join(d, "lv2specgen")
if (
- os.path.exists(os.path.join(d, "template.html"))
- and os.path.exists(os.path.join(d, "style.css"))
- and os.path.exists(os.path.join(d, "pygments.css"))
+ os.path.exists(os.path.join(path, "template.html"))
+ and os.path.exists(os.path.join(path, "style.css"))
+ and os.path.exists(os.path.join(path, "pygments.css"))
):
data_dir = path
break