mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-03-03 21:10:40 +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
|
import sqlite
|
||||||
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 <http://pysqlite.sf.net/>'
|
'plugin. Download it at <http://pysqlite.org/>'
|
||||||
|
|
||||||
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://pysqlite.sf.net/>'
|
'<http://pysqlite.org/>'
|
||||||
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]
|
||||||
|
@ -102,7 +102,7 @@ class SqliteMoobotDB(object):
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
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 <http://pysqlite.sf.net/>'
|
'plugin. Download it at <http://pysqlite.org/>'
|
||||||
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)
|
||||||
|
@ -71,7 +71,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://pysqlite.sf.net/>'
|
'<http://pysqlite.org/>'
|
||||||
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…
x
Reference in New Issue
Block a user