Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dbus_next/aio/message_bus.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def write_callback(self):
# wait for writable
return
except Exception as e:
if self.fut is not None:
if self.fut is not None and not self.fut.done():
self.fut.set_exception(e)
self.bus._finalize(e)

Expand Down