Skip to content

Commit

Permalink
Fix __qualname__ assertion on alertmanager
Browse files Browse the repository at this point in the history
  • Loading branch information
Lord-Kamina committed Aug 24, 2024
1 parent 0cf84c2 commit 1e247aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deluge/core/alertmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def handle_alerts(self):
d = task.deferLater(reactor, 0, handler, alert)
on_handler_timeout = partial(
self.on_delayed_call_timeout,
handler=handler.__qualname__,
handler=handler.__class__.__qualname__,
alert_type=alert_type,
)
d.addTimeout(
Expand Down

0 comments on commit 1e247aa

Please sign in to comment.