Fixed syntax error.

This commit is contained in:
Yizhe Shen 2015-01-18 01:46:39 -05:00
parent 5d5344b57b
commit 05a58810a2
1 changed files with 1 additions and 1 deletions

View File

@ -3775,7 +3775,7 @@ class TriviaTime(callbacks.Plugin):
c.close()
def updateUserLevel(self, username, channel, level):
if not self.userLevelExists(username, channel)
if not self.userLevelExists(username, channel):
return self.insertUserLevel(username, channel, level)
usernameCanonical = ircutils.toLower(username)