Browse Source

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

pull/1160/head
Jan-Philipp Benecke 5 months ago committed by GitHub
parent
commit
75660322f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      apprise/manager.py

2
apprise/manager.py

@ -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

Loading…
Cancel
Save