remove debug printing from a few plugins

This commit is contained in:
Ryan Hitchman 2010-02-01 00:30:51 -07:00
parent 9eb5b236a6
commit 595a37f0e0
3 changed files with 0 additions and 3 deletions

View File

@ -8,7 +8,6 @@ from util import hook
def add_quote(conn, chan, nick, add_nick, msg):
now = time.time()
print repr((conn, add_nick, nick, msg, time))
conn.execute('''insert or fail into quotes (chan, nick, add_nick,
msg, time) values(?,?,?,?,?)''',
(chan, nick, add_nick, msg, now))

View File

@ -29,7 +29,6 @@ def sieve_suite(bot, input, func, args):
acl = bot.config.get('acls', {}).get(func.__name__)
if acl:
print acl
if 'deny-except' in acl:
allowed_channels = map(str.lower, acl['deny-except'])
if input.chan.lower() not in allowed_channels:

View File

@ -112,7 +112,6 @@ def twitter(inp):
return 'error: hashtag not found'
id = random.choice(tweets).text
id = id[id.rfind(':') + 1:]
print id
return twitter(id)
if getting_nth: