about summary refs log tree commit diff
path: root/tracer.py
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2021-02-19 10:44:14 -0500
committerBen Harris <ben@tilde.team>2021-02-19 10:44:14 -0500
commitf9c16f0e42d202992ee41078b2c885b2d40dc580 (patch)
treef0c70ec2045eb150f226a7350eea99a878183aa3 /tracer.py
parent8b5bd04573a4dc649174bf30e6d328c9031d91dc (diff)
remove unnecessary prints and unbuffer example unit
Diffstat (limited to 'tracer.py')
-rw-r--r--tracer.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tracer.py b/tracer.py
index 4bf364c..f683146 100644
--- a/tracer.py
+++ b/tracer.py
@@ -129,7 +129,6 @@ def think(line):
         elif words[0] == "!botlist" or words[0] == "!!help":
             return HELPTEXT
         elif words[0][0:2] == "!!":
-            print(words)
             res = generate(words[0][2:])
             if res:
                 if len(words) >= 3:
@@ -152,7 +151,6 @@ class Server(BaseServer):
             await self.send(build("MODE", [self.nickname, "+B"]))
 
         if line.command == "INVITE":
-            print(f"received invite to {line.params[1]}")
             await self.send(build("JOIN", [line.params[1]]))
 
         if (