Small exclusion change

This commit is contained in:
Oracle 2025-10-18 14:01:41 +02:00
parent 243c43f38e
commit 271bb1f170
2 changed files with 3 additions and 1 deletions

View File

@ -118,6 +118,8 @@ class AsyncronConfig(AppConfig):
for import_file in ext_dir.iterdir():
if not import_file.is_file(): continue
if import_file.suffixes[-1] != ".py": continue
if import_file.name.startswith("_"): continue
#So the imported module can attach it's method to the extender created last
if extender is None: extender = Extender( model )

View File

@ -49,7 +49,7 @@ class Command(BaseCommand):
else: break
print("Command Exited:", worker)