home
·
contact
·
privacy
projects
/
ircplom
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1c63e2
)
Fix Client.send log.alerting into STREAM_SERVER instead of param'd stream.
author
Christian Heller
<c.heller@plomlompom.de>
Thu, 7 Aug 2025 13:57:10 +0000
(15:57 +0200)
committer
Christian Heller
<c.heller@plomlompom.de>
Thu, 7 Aug 2025 13:57:10 +0000
(15:57 +0200)
ircplom/client.py
patch
|
blob
|
history
diff --git
a/ircplom/client.py
b/ircplom/client.py
index fefd7726bf28a9e817e120be2ce4b73ce01782e5..1c23695456135c65e96546f5d28412208caa8541 100644
(file)
--- a/
ircplom/client.py
+++ b/
ircplom/client.py
@@
-229,7
+229,8
@@
class Client(ABC, ClientQueueMixin):
) -> None:
'Send line-separator-delimited message over socket.'
if not self.conn:
- self._log.alert('cannot send, connection seems closed')
+ self._log.alert('cannot send, connection seems closed',
+ stream=stream)
return
self.conn.send(msg)
if to_log: