From fa85c41f33abc15d52d84b37ae4a6985e4c22e2a Mon Sep 17 00:00:00 2001 From: Tanner Date: Thu, 7 Nov 2013 19:09:34 -0600 Subject: [PATCH] Remove all color, fix bugs, add bold --- config.py | 2 +- plugin.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config.py b/config.py index 58903f0..b4383ed 100644 --- a/config.py +++ b/config.py @@ -162,7 +162,7 @@ conf.registerChannelValue(TriviaTime, 'answeredNormal', ) conf.registerChannelValue(TriviaTime, 'notAnswered', - registry.NormalizedString("""Time's up! The answer was \x02%s\x02""", + registry.NormalizedString("""Time's up! The answer was \x02%s\x02.""", """Message when no one guesses the answer""") ) diff --git a/plugin.py b/plugin.py index 23023ed..777b626 100644 --- a/plugin.py +++ b/plugin.py @@ -1019,7 +1019,7 @@ class TriviaTime(callbacks.Plugin): hints = self.getHintString(self.hintsCounter) #increment hints counter self.hintsCounter += 1 - self.sendMessage('Hint %s: %s' % (self.hintsCounter, hints), 1, 9) + self.sendMessage('Hint %s: \x02%s' % (self.hintsCounter, hints), 1, 9) #reset hint shown self.shownHint = False @@ -1104,7 +1104,7 @@ class TriviaTime(callbacks.Plugin): tempQuestion += '?' # bold the q - questionText = '%s' % (tempQuestion) + questionText = '\x02%s' % (tempQuestion) # KAOS? report # of answers if len(self.answers) > 1: