diff options
-rw-r--r-- | poezio/windows/info_wins.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/poezio/windows/info_wins.py b/poezio/windows/info_wins.py index d1426e67..317f24f7 100644 --- a/poezio/windows/info_wins.py +++ b/poezio/windows/info_wins.py @@ -176,8 +176,8 @@ class ConversationInfoWin(InfoWin): Write all information added by plugins by getting the value returned by the callbacks. """ - for key in information: - self.addstr(information[key](jid), + for plugin in information.values(): + self.addstr(plugin(jid), to_curses_attr(get_theme().COLOR_INFORMATION_BAR)) def write_resource_information(self, resource): |