Skip to content

Commit

Permalink
fixed BuffWriter initialization message
Browse files Browse the repository at this point in the history
  • Loading branch information
bubbleboy14 committed Apr 27, 2024
1 parent 0f50e22 commit 90905fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rel/buff.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(self, sock, data, sender=None, onerror=None):
self.onerror = onerror
self.listen()
self.ingest(data)
self.log("initialized with %s-part message"%(len(self.data),))
self.log("initialized with %s-byte message"%(len(data),))

def log(self, *msg):
log("BuffWriter[%s]: %s"%(self.fileno, " ".join(msg)))
Expand Down

0 comments on commit 90905fb

Please sign in to comment.