From efa6c89e401c30e1745cffa304b3648b090065e9 Mon Sep 17 00:00:00 2001 From: Ben Schomp Date: Thu, 12 Apr 2012 17:30:18 -0400 Subject: [PATCH] Keep the color scheme. --- plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.py b/plugin.py index 2380c34..bb9bb80 100644 --- a/plugin.py +++ b/plugin.py @@ -395,7 +395,7 @@ class Worddle(BaseGame): else: color = GRAY if len(word) == longest_len: - word += YELLOW + '*' + word += LYELLOW + '*' words_text += '%s%s%s ' % (color, word, LGRAY) if not words_text: words_text = '%s-none-%s' % (GRAY, LGRAY)