From ac30f8d4cc7413fe85a59690dc674ff75f432f7c Mon Sep 17 00:00:00 2001 From: jesopo Date: Mon, 11 Nov 2019 12:13:46 +0000 Subject: [PATCH] don't use hash() for hashed colorising as it's not stable through restarts --- src/utils/irc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/irc.py b/src/utils/irc.py index 59151a75..d44825d8 100644 --- a/src/utils/irc.py +++ b/src/utils/irc.py @@ -43,7 +43,7 @@ def color(s: str, foreground: consts.IRCColor, HASH_COLORS = list(range(2, 16)) def hash_colorize(s: str): - code = hash(s)%len(HASH_COLORS) + code = sum(ord(c) for c in s)%len(HASH_COLORS) return color(s, consts.COLOR_CODES[code]) def bold(s: str) -> str: