mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-20 01:19:26 +01:00
Use the correct URLs for the PySqlite website.
Signed-off-by: James Vega <jamessan@users.sourceforge.net>
(cherry picked from commit 927c8c963a
)
This commit is contained in:
parent
dcdbd5bea4
commit
0bd9a8b6f4
@ -45,7 +45,7 @@ try:
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
raise callbacks.Error, 'You need to have PySQLite installed to use this ' \
|
raise callbacks.Error, 'You need to have PySQLite installed to use this ' \
|
||||||
'plugin. Download it at ' \
|
'plugin. Download it at ' \
|
||||||
'<http://trace.edgewall.org/wiki/PySqlite>'
|
'<http://code.google.com/p/pysqlite/>'
|
||||||
|
|
||||||
def getFactoid(irc, msg, args, state):
|
def getFactoid(irc, msg, args, state):
|
||||||
assert not state.channel
|
assert not state.channel
|
||||||
|
@ -53,7 +53,7 @@ class SqliteKarmaDB(object):
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
raise callbacks.Error, 'You need to have PySQLite installed to ' \
|
raise callbacks.Error, 'You need to have PySQLite installed to ' \
|
||||||
'use Karma. Download it at ' \
|
'use Karma. Download it at ' \
|
||||||
'<http://trace.edgewall.org/wiki/PySqlite>'
|
'<http://code.google.com/p/pysqlite/>'
|
||||||
filename = plugins.makeChannelFilename(self.filename, channel)
|
filename = plugins.makeChannelFilename(self.filename, channel)
|
||||||
if filename in self.dbs:
|
if filename in self.dbs:
|
||||||
return self.dbs[filename]
|
return self.dbs[filename]
|
||||||
|
@ -103,7 +103,7 @@ class SqliteMoobotDB(object):
|
|||||||
raise callbacks.Error, \
|
raise callbacks.Error, \
|
||||||
'You need to have PySQLite installed to use this ' \
|
'You need to have PySQLite installed to use this ' \
|
||||||
'plugin. Download it at ' \
|
'plugin. Download it at ' \
|
||||||
'<http://trace.edgewall.org/wiki/PySqlite>'
|
'<http://code.google.com/p/pysqlite/>'
|
||||||
if channel in self.dbs:
|
if channel in self.dbs:
|
||||||
return self.dbs[channel]
|
return self.dbs[channel]
|
||||||
filename = plugins.makeChannelFilename(self.filename, channel)
|
filename = plugins.makeChannelFilename(self.filename, channel)
|
||||||
|
@ -70,7 +70,7 @@ class SqliteQuoteGrabsDB(object):
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
raise callbacks.Error, 'You need to have PySQLite installed to ' \
|
raise callbacks.Error, 'You need to have PySQLite installed to ' \
|
||||||
'use QuoteGrabs. Download it at ' \
|
'use QuoteGrabs. Download it at ' \
|
||||||
'<http://trace.edgewall.org/wiki/PySqlite>'
|
'<http://code.google.com/p/pysqlite/>'
|
||||||
filename = plugins.makeChannelFilename(self.filename, channel)
|
filename = plugins.makeChannelFilename(self.filename, channel)
|
||||||
def p(s1, s2):
|
def p(s1, s2):
|
||||||
return int(ircutils.nickEqual(s1, s2))
|
return int(ircutils.nickEqual(s1, s2))
|
||||||
|
Loading…
Reference in New Issue
Block a user