mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-03-03 04:50:43 +01:00
Change pysqlite.sf.net references to pysqlite.org
This commit is contained in:
parent
ad4ef00bc4
commit
5c59539145
@ -43,7 +43,7 @@ try:
|
||||
import sqlite
|
||||
except ImportError:
|
||||
raise callbacks.Error, 'You need to have PySQLite installed to use this ' \
|
||||
'plugin. Download it at <http://pysqlite.sf.net/>'
|
||||
'plugin. Download it at <http://pysqlite.org/>'
|
||||
|
||||
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.sf.net/>'
|
||||
'<http://pysqlite.org/>'
|
||||
filename = plugins.makeChannelFilename(self.filename, channel)
|
||||
if filename in self.dbs:
|
||||
return self.dbs[filename]
|
||||
|
@ -102,7 +102,7 @@ class SqliteMoobotDB(object):
|
||||
except ImportError:
|
||||
raise callbacks.Error, \
|
||||
'You need to have PySQLite installed to use this ' \
|
||||
'plugin. Download it at <http://pysqlite.sf.net/>'
|
||||
'plugin. Download it at <http://pysqlite.org/>'
|
||||
if channel in self.dbs:
|
||||
return self.dbs[channel]
|
||||
filename = plugins.makeChannelFilename(self.filename, channel)
|
||||
|
@ -71,7 +71,7 @@ class SqliteQuoteGrabsDB(object):
|
||||
except ImportError:
|
||||
raise callbacks.Error, 'You need to have PySQLite installed to ' \
|
||||
'use QuoteGrabs. Download it at ' \
|
||||
'<http://pysqlite.sf.net/>'
|
||||
'<http://pysqlite.org/>'
|
||||
filename = plugins.makeChannelFilename(self.filename, channel)
|
||||
def p(s1, s2):
|
||||
return int(ircutils.nickEqual(s1, s2))
|
||||
|
Loading…
x
Reference in New Issue
Block a user