aboutsummaryrefslogtreecommitdiff
path: root/src/IRCSocket.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/IRCSocket.py')
-rw-r--r--src/IRCSocket.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCSocket.py b/src/IRCSocket.py
index 4853a23f..3b3395e8 100644
--- a/src/IRCSocket.py
+++ b/src/IRCSocket.py
@@ -149,7 +149,7 @@ class Socket(IRCObject.Object):
sent_lines = [] # type: typing.List[IRCLine.SentLine]
for i in range(sent_lines_count):
sent_line = self._buffered_lines.pop(0)
- sent_line.sent()
+ sent_line.events.on("send").call()
sent_lines.append(sent_line)
self._write_buffer = self._write_buffer[bytes_written_i:]