colors: Fix blockquote coloring.

This commit is contained in:
Damir Jelić 2018-08-29 15:57:39 +02:00
parent 19eeec4f3b
commit f8a318fef2

View file

@ -54,8 +54,8 @@ class Formatted():
def textwrapper(self): def textwrapper(self):
return textwrap.TextWrapper( return textwrap.TextWrapper(
width=67, width=67,
initial_indent="{}> ".format(G.CONFIG.color.quote), initial_indent="{}> ".format(W.color(G.CONFIG.color.quote)),
subsequent_indent="{}> ".format(G.CONFIG.color.quote) subsequent_indent="{}> ".format(W.color(G.CONFIG.color.quote))
) )
def is_formatted(self): def is_formatted(self):