fix minor script match bug

This commit is contained in:
Sam G. 2024-07-09 15:36:58 -07:00
parent ec5893581e
commit 8a78da1a28

View File

@ -490,7 +490,7 @@ class ConfigManager:
app_name, app_name,
scheme='any', scheme='any',
palette='any', palette='any',
): ) -> list:
''' '''
Execute matching scripts in the app's ``call/`` directory. Execute matching scripts in the app's ``call/`` directory.
@ -513,7 +513,7 @@ class ConfigManager:
call_dir = Path(app_dir, 'call') call_dir = Path(app_dir, 'call')
if not call_dir.is_dir(): if not call_dir.is_dir():
return return []
prefix_order = [ prefix_order = [
('none' , 'none'), ('none' , 'none'),