diff --git a/plugins/Factoids/plugin.py b/plugins/Factoids/plugin.py
index 05de2e1c1..fd8c5f31f 100644
--- a/plugins/Factoids/plugin.py
+++ b/plugins/Factoids/plugin.py
@@ -44,7 +44,8 @@ try:
import sqlite
except ImportError:
raise callbacks.Error, 'You need to have PySQLite installed to use this ' \
- 'plugin. Download it at '
+ '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 cc298a62f..a24548326 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 10acf0d21..030f735d0 100644
--- a/plugins/MoobotFactoids/plugin.py
+++ b/plugins/MoobotFactoids/plugin.py
@@ -102,7 +102,8 @@ class SqliteMoobotDB(object):
except ImportError:
raise callbacks.Error, \
'You need to have PySQLite installed to use this ' \
- 'plugin. Download it at '
+ '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 a077878d5..65c2e4b52 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))