forgot to remove a debugging line

This commit is contained in:
Ryan Hitchman 2010-02-07 17:58:06 -07:00
parent 3c4edb54c2
commit 826a47837c
1 changed files with 1 additions and 1 deletions

View File

@ -73,5 +73,5 @@ def urlinput(inp, nick='', chan='', server='', reply=None, bot=None):
if url not in ignored_urls:
history = get_history(db, chan, url)
insert_history(db, chan, url, nick)
if nick not in dict(history) or True:
if nick not in dict(history):
return format_reply(history)