From fcc0c1c8d783989e23416ac08c2cbcbb736072b4 Mon Sep 17 00:00:00 2001 From: Adam Taylor Date: Tue, 24 Mar 2026 17:04:15 -0600 Subject: [PATCH] Made it so the "load" function handles ModuleNotFoundError --- kronos/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kronos/__init__.py b/kronos/__init__.py index 761ed2f..73fdf6f 100644 --- a/kronos/__init__.py +++ b/kronos/__init__.py @@ -41,7 +41,7 @@ def load(): for cmd, app in get_commands().items(): try: load_command_class(app, cmd) - except django.core.exceptions.ImproperlyConfigured: + except (django.core.exceptions.ImproperlyConfigured, ModuleNotFoundError): pass