From 86922dba867a504d8d3f570f90b8681e6029ece4 Mon Sep 17 00:00:00 2001 From: Nicolas Coevoet Date: Sat, 8 Nov 2014 14:47:29 +0100 Subject: [PATCH] fix indentation --- plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.py b/plugin.py index 0229522..ad41933 100644 --- a/plugin.py +++ b/plugin.py @@ -1601,7 +1601,7 @@ class ChanTracker(callbacks.Plugin,plugins.ChannelDBHandler): def vacuum (self,irc,msg,args): """VACUUM the database""" db = self.getDb(irc.network) - c = db.cursor() + c = db.cursor() c.execute('VACUUM') c.close() irc.replySuccess()