Updated as a precursor to making it database-independent.

This commit is contained in:
Jeremy Fincher 2004-08-11 23:35:11 +00:00
parent 3af85f301b
commit a6f03fa33a
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ class SqliteKarmaDB(object):
WHERE normalized=%s""", normalized)
db.commit()
def decrement(self, channel, thing):
def decrement(self, channel, name):
db = self._getDb(channel)
cursor = db.cursor()
normalized = name.lower()