From 3912c9c4215a85a7336fca7bf12ccf88331f3ceb Mon Sep 17 00:00:00 2001 From: Tomas Tomecek Date: Wed, 11 Nov 2015 15:08:36 +0100 Subject: [PATCH] notif: color display-always messages --- sen/tui/widget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sen/tui/widget.py b/sen/tui/widget.py index 7f1d75c..f971625 100644 --- a/sen/tui/widget.py +++ b/sen/tui/widget.py @@ -37,7 +37,7 @@ def get_operation_notify_widget(operation, notif_level="info", display_always=Tr if took < 1000: text_list.append((attr, " ms")) elif display_always: - text_list.append(operation.pretty_message) + text_list.append((attr, operation.pretty_message)) else: return return urwid.AttrMap(urwid.Text(text_list), attr)