mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-23 19:22:45 +01:00
Update references to PySqlite URL
Signed-off-by: James Vega <jamessan@users.sourceforge.net>
(cherry picked from commit f475525237
)
This commit is contained in:
parent
f0852a9e45
commit
dcdbd5bea4
@ -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
|
||||
|
@ -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]
|
||||
|
@ -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)
|
||||
|
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user