diff --git a/plugins/Factoids/plugin.py b/plugins/Factoids/plugin.py index fd8c5f31f..66931e318 100644 --- a/plugins/Factoids/plugin.py +++ b/plugins/Factoids/plugin.py @@ -45,7 +45,7 @@ try: except ImportError: raise callbacks.Error, 'You need to have PySQLite installed to use this ' \ 'plugin. Download it at ' \ - '' + '' def getFactoid(irc, msg, args, state): assert not state.channel diff --git a/plugins/Karma/plugin.py b/plugins/Karma/plugin.py index a24548326..36532b286 100644 --- a/plugins/Karma/plugin.py +++ b/plugins/Karma/plugin.py @@ -53,7 +53,7 @@ class SqliteKarmaDB(object): except ImportError: raise callbacks.Error, 'You need to have PySQLite installed to ' \ 'use Karma. Download it at ' \ - '' + '' filename = plugins.makeChannelFilename(self.filename, channel) if filename in self.dbs: return self.dbs[filename] diff --git a/plugins/MoobotFactoids/plugin.py b/plugins/MoobotFactoids/plugin.py index 030f735d0..c0818bc77 100644 --- a/plugins/MoobotFactoids/plugin.py +++ b/plugins/MoobotFactoids/plugin.py @@ -103,7 +103,7 @@ class SqliteMoobotDB(object): raise callbacks.Error, \ 'You need to have PySQLite installed to use this ' \ 'plugin. Download it at ' \ - '' + '' if channel in self.dbs: return self.dbs[channel] filename = plugins.makeChannelFilename(self.filename, channel) diff --git a/plugins/QuoteGrabs/plugin.py b/plugins/QuoteGrabs/plugin.py index 65c2e4b52..8fe6714bb 100644 --- a/plugins/QuoteGrabs/plugin.py +++ b/plugins/QuoteGrabs/plugin.py @@ -70,7 +70,7 @@ class SqliteQuoteGrabsDB(object): except ImportError: raise callbacks.Error, 'You need to have PySQLite installed to ' \ 'use QuoteGrabs. Download it at ' \ - '' + '' filename = plugins.makeChannelFilename(self.filename, channel) def p(s1, s2): return int(ircutils.nickEqual(s1, s2))