From 90a6726158b616773b00ddc3e5c16edb927b99a7 Mon Sep 17 00:00:00 2001 From: moneromooo Date: Sun, 25 Jan 2015 13:15:58 +0000 Subject: [PATCH] Remove old OnIdle implementation that was left over by mistake --- tipbot.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tipbot.py b/tipbot.py index 2e6d618..cacb105 100644 --- a/tipbot.py +++ b/tipbot.py @@ -266,7 +266,7 @@ def Disable(link,cmd): def OnIdle(): if disabled: return - RunIdleFunctions([irc,redisdb]) + RunIdleFunctions() def Quit(link,cmd): global networks @@ -278,9 +278,6 @@ def Quit(link,cmd): network.quit() networks = [] -def OnIdle(): - RunIdleFunctions() - def OnIdentified(link, identified): if disabled: log_info('Ignoring identified notification for %s while disabled' % str(link.identity()))