From deecfcf9c6b15a200b0bd9e71428c268fc170ccd Mon Sep 17 00:00:00 2001 From: Agnibho Mondal Date: Tue, 14 Nov 2023 00:55:17 +0530 Subject: [PATCH] Bugfix: plugin exception if main.py absent --- plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.py b/plugin.py index 4bb32f2..8381f57 100644 --- a/plugin.py +++ b/plugin.py @@ -37,7 +37,7 @@ class Plugin(QObject): spec.loader.exec_module(mod) self.plugins.append(mod) except Exception as e: - logging.warning(i, ":", e) + logging.warning(i+":"+str(e)) def get_name(self, mod): try: -- 2.39.5