From 826a47837cc65efbc50a9793a88abc799edc0a82 Mon Sep 17 00:00:00 2001 From: Ryan Hitchman Date: Sun, 7 Feb 2010 17:58:06 -0700 Subject: [PATCH] forgot to remove a debugging line --- plugins/urlhistory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/urlhistory.py b/plugins/urlhistory.py index 5cd75ca..b32e4e0 100644 --- a/plugins/urlhistory.py +++ b/plugins/urlhistory.py @@ -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)