From 52fd0ef0e7b066f73cb4861ea4fe4a2b0b42fc80 Mon Sep 17 00:00:00 2001 From: Yizhe Shen Date: Wed, 18 Feb 2015 05:44:52 -0500 Subject: [PATCH] Fixed syntax error in TriviaTime.skip(). --- plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.py b/plugin.py index 3cfb9aa..13aa26d 100644 --- a/plugin.py +++ b/plugin.py @@ -3846,7 +3846,7 @@ class TriviaTime(callbacks.Plugin): return # Update skip count - game.skipList.append = usernameCanonical + game.skipList.append(usernameCanonical) game.skipTimeoutList.append(usernameCanonical) self.reply(irc, msg, '%s voted to skip this question.' % username, prefixNick=False) skipPercent = len(game.skipList)/(totalActive*1.0)