diff --git a/tts.py b/tts.py index 9de70b5..79d14d0 100644 --- a/tts.py +++ b/tts.py @@ -13,7 +13,6 @@ import socketserver from threading import Thread, current_thread from http.server import BaseHTTPRequestHandler from urllib.parse import urlparse, parse_qs -from pprint import pprint class IRC: irc = socket.socket() @@ -80,7 +79,6 @@ class IRC: logging.debug(msgid) for msg in list(msg_queue_raw): - pprint(msg) if msg['msgid'] == msgid: logging.info('Suppressing message '+str(msgid)) else: @@ -392,7 +390,6 @@ def main(): logging.info('Sending TTS message') msg_queue[raw_msg['timestamp']] = [raw_msg['user'], raw_msg['msg']] logging.debug(msg_queue) - pprint(msg_queue) else: logging.debug('Msg is already in queue') except KeyboardInterrupt: