Skip to content

Commit

Permalink
Resolved TypeError logging exception with Custom plugin loading (#1042)
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc authored Jan 6, 2024
1 parent 1da1d48 commit 8bff103
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apprise/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,10 +302,9 @@ def _import_module(path):
if module_pyname in self._custom_module_map:
logger.debug(
'Custom module %s - %d schema(s) (name=%s) '
'loaded in {:.6f}s',
_path, module_name,
'loaded in %.6fs', _path,
len(self._custom_module_map[module_pyname]['notify']),
(time.time() - t_start))
module_name, (time.time() - t_start))

# Add our plugin name to our module map
self._module_map[module_name] = {
Expand Down

0 comments on commit 8bff103

Please sign in to comment.