Use the correct URLs for the PySqlite website.

Signed-off-by: James Vega <jamessan@users.sourceforge.net>
This commit is contained in:
James Vega 2009-10-21 22:48:04 -04:00
parent f475525237
commit 927c8c963a
4 changed files with 4 additions and 4 deletions

View File

@ -45,7 +45,7 @@ try:
except ImportError:
raise callbacks.Error, 'You need to have PySQLite installed to use this ' \
'plugin. Download it at ' \
'<http://trace.edgewall.org/wiki/PySqlite>'
'<http://code.google.com/p/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://trace.edgewall.org/wiki/PySqlite>'
'<http://code.google.com/p/pysqlite/>'
filename = plugins.makeChannelFilename(self.filename, channel)
if filename in self.dbs:
return self.dbs[filename]

View File

@ -103,7 +103,7 @@ class SqliteMoobotDB(object):
raise callbacks.Error, \
'You need to have PySQLite installed to use this ' \
'plugin. Download it at ' \
'<http://trace.edgewall.org/wiki/PySqlite>'
'<http://code.google.com/p/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://trace.edgewall.org/wiki/PySqlite>'
'<http://code.google.com/p/pysqlite/>'
filename = plugins.makeChannelFilename(self.filename, channel)
def p(s1, s2):
return int(ircutils.nickEqual(s1, s2))