summaryrefslogtreecommitdiff
path: root/poezio/windows/text_win.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/windows/text_win.py')
-rw-r--r--poezio/windows/text_win.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/poezio/windows/text_win.py b/poezio/windows/text_win.py
index ef7e8f86..76c7d2d7 100644
--- a/poezio/windows/text_win.py
+++ b/poezio/windows/text_win.py
@@ -374,7 +374,7 @@ class TextWin(BaseTextWin):
if get_theme().CHAR_TIME_RIGHT and message.str_time:
offset += 1
lines = poopt.cut_text(txt, self.width - offset - 1)
- prepend = default_color if default_color is None else ''
+ prepend = default_color if default_color else ''
attrs = [] # type: List[str]
for line in lines:
saved = Line(
@@ -626,7 +626,7 @@ class XMLTextWin(BaseTextWin):
if get_theme().CHAR_TIME_RIGHT and message.str_time:
offset += 1
lines = poopt.cut_text(txt, self.width - offset - 1)
- prepend = default_color if default_color is not None else ''
+ prepend = default_color if default_color else ''
attrs = [] # type: List[str]
for line in lines:
saved = Line(