From 44f582116bf9f5e7e66c1e531ecd27e5c63b53ff Mon Sep 17 00:00:00 2001 From: Syl Morrison Date: Mon, 4 May 2026 13:43:35 +0100 Subject: [PATCH] fix typo in audio-effect CLAP feature, causing fx plugins to be registered as aumu --- create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create.py b/create.py index b4870e6..c727bb2 100644 --- a/create.py +++ b/create.py @@ -37,7 +37,7 @@ def main(): os.mkdir(dest_src_path) prepro_name = args.name.replace('-', '_').upper() - au_subtype, clap_features = ('aufx', 'audio_effect') if args.type == 'fx' else ('aumu', 'instrument') + au_subtype, clap_features = ('aufx', 'audio-effect') if args.type == 'fx' else ('aumu', 'instrument') boilerplate_source = os.path.join(os.path.dirname(__file__), 'boilerplate') gui_source = os.path.join(boilerplate_source, f'{gui}_gui')