Add missing % string in import failed trace message (#1151)

This commit is contained in:
Jan-Philipp Benecke 2024-07-02 22:40:04 +02:00 committed by GitHub
parent 6733953cc2
commit 75660322f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -223,7 +223,7 @@ class PluginManager(metaclass=Singleton):
if not hasattr(plugin, 'app_id'): if not hasattr(plugin, 'app_id'):
# Filter out non-notification modules # Filter out non-notification modules
logger.trace( logger.trace(
"(%s) import failed; no app_id defined in %s", "(%s.%s) import failed; no app_id defined in %s",
self.name, m_class, os.path.join(module_path, f)) self.name, m_class, os.path.join(module_path, f))
continue continue