Change pysqlite.sf.net references to pysqlite.org

This commit is contained in:
James Vega 2005-11-03 05:31:24 +00:00
parent ad4ef00bc4
commit 5c59539145
4 changed files with 4 additions and 4 deletions

View File

@ -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

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://pysqlite.sf.net/>'
'<http://pysqlite.org/>'
filename = plugins.makeChannelFilename(self.filename, channel)
if filename in self.dbs:
return self.dbs[filename]

View File

@ -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)

View File

@ -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))