From f8a318fef25f0644dd57f6c2a4598101807e55f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Wed, 29 Aug 2018 15:57:39 +0200 Subject: [PATCH] colors: Fix blockquote coloring. --- matrix/colors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/matrix/colors.py b/matrix/colors.py index 730ec27..6ba9bff 100644 --- a/matrix/colors.py +++ b/matrix/colors.py @@ -54,8 +54,8 @@ class Formatted(): def textwrapper(self): return textwrap.TextWrapper( width=67, - initial_indent="{}> ".format(G.CONFIG.color.quote), - subsequent_indent="{}> ".format(G.CONFIG.color.quote) + initial_indent="{}> ".format(W.color(G.CONFIG.color.quote)), + subsequent_indent="{}> ".format(W.color(G.CONFIG.color.quote)) ) def is_formatted(self):