Update references to PySqlite URL

Signed-off-by: James Vega <jamessan@users.sourceforge.net>
(cherry picked from commit f475525237)
This commit is contained in:
James Vega 2009-10-21 22:43:26 -04:00
parent f0852a9e45
commit dcdbd5bea4
4 changed files with 6 additions and 4 deletions

View File

@ -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 <http://pysqlite.org/>'
'plugin. Download it at ' \
'<http://trace.edgewall.org/wiki/PySqlite>'
def getFactoid(irc, msg, args, state):
assert not state.channel

View File

@ -53,7 +53,7 @@ class SqliteKarmaDB(object):
except ImportError:
raise callbacks.Error, 'You need to have PySQLite installed to ' \
'use Karma. Download it at ' \
'<http://pysqlite.org/>'
'<http://trace.edgewall.org/wiki/PySqlite>'
filename = plugins.makeChannelFilename(self.filename, channel)
if filename in self.dbs:
return self.dbs[filename]

View File

@ -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 <http://pysqlite.org/>'
'plugin. Download it at ' \
'<http://trace.edgewall.org/wiki/PySqlite>'
if channel in self.dbs:
return self.dbs[channel]
filename = plugins.makeChannelFilename(self.filename, channel)

View File

@ -70,7 +70,7 @@ class SqliteQuoteGrabsDB(object):
except ImportError:
raise callbacks.Error, 'You need to have PySQLite installed to ' \
'use QuoteGrabs. Download it at ' \
'<http://pysqlite.org/>'
'<http://trace.edgewall.org/wiki/PySqlite>'
filename = plugins.makeChannelFilename(self.filename, channel)
def p(s1, s2):
return int(ircutils.nickEqual(s1, s2))