From 47902b37bcff8447ccef95d1c1d0b3c15fdcab3c Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sat, 30 Nov 2024 16:04:35 -0600 Subject: [PATCH] fix: avoid error when loading installer templates i guess 'poser:templates/install' throws a TypeError, not sure why i was getting ModuleNotFoundError before..? --- src/wuttjamaican/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wuttjamaican/install.py b/src/wuttjamaican/install.py index 2212fa2..cf9e3ac 100644 --- a/src/wuttjamaican/install.py +++ b/src/wuttjamaican/install.py @@ -124,7 +124,7 @@ class InstallHandler(GenericHandler): try: paths.insert(0, self.app.resource_path(f'{self.pkg_name}:templates/install')) - except ModuleNotFoundError: + except (TypeError, ModuleNotFoundError): pass self.templates = TemplateLookup(directories=paths)