From 3547e3aca076d6a9d701dfde316396a94b94167b Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 25 Jul 2020 15:42:53 +0100 Subject: [PATCH] Fix listing LV2 plugins on Windows Signed-off-by: falkTX --- source/frontend/carla_database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/frontend/carla_database.py b/source/frontend/carla_database.py index 2e2f1bd57..15285096f 100755 --- a/source/frontend/carla_database.py +++ b/source/frontend/carla_database.py @@ -351,7 +351,7 @@ def checkPluginCached(desc, ptype): pinfo['parameters.outs'] = desc['parameterOuts'] if ptype == PLUGIN_LV2: - pinfo['filename'], pinfo['label'] = pinfo['label'].split('/',1) + pinfo['filename'], pinfo['label'] = pinfo['label'].split(os.path.sep,1) elif ptype == PLUGIN_SFZ: pinfo['filename'] = pinfo['label']