colors: Fix blockquote coloring.
This commit is contained in:
parent
19eeec4f3b
commit
f8a318fef2
1 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||||
|
|
Loading…
Reference in a new issue