From e0f56a157dcc09a46b2087fcc1bde454096c6e47 Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 19 Sep 2016 21:56:12 -0700 Subject: [PATCH] relay_cb: remove dark gray from colours index It's too hard to read on a dark background. --- plugins/relay_clientbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/relay_clientbot.py b/plugins/relay_clientbot.py index 4e0682c..844abe0 100644 --- a/plugins/relay_clientbot.py +++ b/plugins/relay_clientbot.py @@ -29,7 +29,7 @@ def color_text(s): (sum of all characters). """ colors = ('02', '03', '04', '05', '06', '07', '08', '09', '10', '11', - '12', '13', '14', '15') + '12', '13', '15') digest = hashlib.md5(s.encode()).hexdigest() digest = int(digest, base=16) num = digest % len(colors)