Fixed typo.

- Introduced in d6dce89
This commit is contained in:
Yizhe Shen 2014-08-24 13:35:01 -04:00
parent 97e31c56e4
commit 3a5d1b75fc
1 changed files with 1 additions and 1 deletions

View File

@ -3008,7 +3008,7 @@ class TriviaTime(callbacks.Plugin):
c = self.conn.cursor()
c.execute('''SELECT COUNT(id) FROM trivialogin
WHERE username_canonical=?''', (usernameCanonical,))
rows = c.fetchone()
row = c.fetchone()
c.close()
return row[0] > 0