From 075af0967c49e6748baa3f3a7f266991b7150151 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 25 Aug 2003 20:13:20 +0000 Subject: [PATCH] Commented out some debug.printfs. --- plugins/Http.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Http.py b/plugins/Http.py index b64725bdc..ee820c37c 100644 --- a/plugins/Http.py +++ b/plugins/Http.py @@ -262,7 +262,7 @@ class Http(callbacks.Privmsg): url = 'http://www.hamweather.net/cgi-bin/hw3/hw3.cgi?'\ 'config=&forecast=zandh&pands=%s&Submit=GO' % args[0] - debug.printf(url) + #debug.printf(url) try: fd = urllib2.urlopen(url) html = fd.read() @@ -337,7 +337,7 @@ class Http(callbacks.Privmsg): fd.close() # The following definitions are stripped and empties are removed. defs = filter(None, map(str.strip, self._acronymre.findall(html))) - debug.printf(defs) + #debug.printf(defs) if len(defs) == 0: irc.reply(msg, 'No definitions found.') else: