Skip to content

Commit

Permalink
Try to fix qualname assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
Lord-Kamina committed Jul 2, 2024
1 parent 86a675a commit bfb4ed8
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 bfb4ed8

Please sign in to comment.