From 593148f4d35cd19deff8a2ad5b44123e068f91e6 Mon Sep 17 00:00:00 2001 From: Tanner Date: Tue, 17 Jun 2014 21:52:36 -0500 Subject: [PATCH] Bug fix for real this time ;) --- plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.py b/plugin.py index be9d4c4..265747d 100644 --- a/plugin.py +++ b/plugin.py @@ -1094,7 +1094,7 @@ class TriviaTime(callbacks.Plugin): self.reply(irc, msg, 'No question is currently being asked.') return elif not threadStorage.wasUserActiveIn(username, channel, timeSeconds): - self.reply(irc, msg, 'Only users who have answered a question in the last %s seconds can vote to skip.' % (timeSeconds)') + self.reply(irc, msg, 'Only users who have answered a question in the last %s seconds can vote to skip.' % (timeSeconds)) return elif usernameCanonical in game.skipVoteCount: self.reply(irc, msg, 'You can only vote to skip once.') @@ -1106,7 +1106,7 @@ class TriviaTime(callbacks.Plugin): skipSeconds = self.registryValue('skip.skipTime', channel) game.skips.setTimeout(skipSeconds) if game.skips.has(usernameCanonical): - self.reply(irc, msg, 'You must wait %s seconds to be able to skip again.' % (game.skips.getTimeLeft(usernameCanonical))') + self.reply(irc, msg, 'You must wait %s seconds to be able to skip again.' % (game.skips.getTimeLeft(usernameCanonical))) return # Update skip count