Fixed mistake in Storage.userLevelExists().

This commit is contained in:
Yizhe Shen 2015-02-24 18:41:53 -05:00
parent dae6405d14
commit 078fdb975a
1 changed files with 1 additions and 1 deletions

View File

@ -2230,7 +2230,7 @@ class Storage:
def userLevelExists(self, username, channel):
usernameCanonical = ircutils.toLower(username)
channelCanonical = ircutils.toLower(username)
channelCanonical = ircutils.toLower(channel)
c = self.conn.cursor()
c.execute('''SELECT COUNT(id)