aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/utils/irc.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/utils/irc.py b/src/utils/irc.py
index 4a99caca..4a74259f 100644
--- a/src/utils/irc.py
+++ b/src/utils/irc.py
@@ -201,10 +201,11 @@ def to_ansi_colors(s: str) -> str:
replace += utils.consts.ANSI_BOLD_RESET
color = True
- replace += utils.consts.ANSI_FORMAT % foreground.ansi
+ foreground_s = str(foreground.ansi).zfill(2)
if foreground.color_bold:
color_bold = True
- replace += utils.consts.ANSI_BOLD
+ foreground_s = "%s;1" % foreground_s
+ replace += utils.consts.ANSI_FORMAT % foreground_s
else:
if color:
replace += utils.consts.ANSI_COLOR_RESET