aboutsummaryrefslogtreecommitdiff
path: root/src/IRCBot.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-17 17:36:01 +0100
committerGravatar jesopo2018-10-17 17:36:01 +0100
commit4796d4264cc6314d8543d75df374e373c192b287 (patch)
treed077850342a9f0a514210c2e19f275d7b18fa0c8 /src/IRCBot.py
parentPut .strip("\n") call in the right place in modules/eval_python.py (diff)
signature
Print lines not [lines] in src/IRCBot.py
Diffstat (limited to 'src/IRCBot.py')
-rw-r--r--src/IRCBot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCBot.py b/src/IRCBot.py
index 472c7054..657fb135 100644
--- a/src/IRCBot.py
+++ b/src/IRCBot.py
@@ -172,7 +172,7 @@ class Bot(object):
for piece in data:
if irc:
self.log.debug("%s (raw) | %s",
- [str(sock), data])
+ [str(sock), piece])
sock.parse_data(piece)
elif event & select.EPOLLOUT:
sock._send()