summaryrefslogtreecommitdiff
path: root/poezio/windows/info_wins.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/windows/info_wins.py')
-rw-r--r--poezio/windows/info_wins.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/poezio/windows/info_wins.py b/poezio/windows/info_wins.py
index d07cbe20..3a8d1863 100644
--- a/poezio/windows/info_wins.py
+++ b/poezio/windows/info_wins.py
@@ -206,7 +206,7 @@ class ConversationInfoWin(InfoWin):
"""
Write the information about the contact
"""
- color = to_curses_attr(get_theme().COLOR_INFORMATION_BAR))
+ color = to_curses_attr(get_theme().COLOR_INFORMATION_BAR)
if not contact:
self.addstr("(contact not in roster)", color)
return
@@ -219,7 +219,7 @@ class ConversationInfoWin(InfoWin):
Just write the jid that we are talking to
"""
theme = get_theme()
- color = to_curses_attr(theme.COLOR_INFORMATION_BAR))
+ color = to_curses_attr(theme.COLOR_INFORMATION_BAR)
self.addstr('[', color)
self.addstr(jid.full,
to_curses_attr(theme.COLOR_CONVERSATION_NAME))
@@ -241,7 +241,7 @@ class DynamicConversationInfoWin(ConversationInfoWin):
log.debug("write_contact_jid DynamicConversationInfoWin, jid: %s",
jid.resource)
theme = get_theme()
- color = to_curses_attr(theme.COLOR_INFORMATION_BAR))
+ color = to_curses_attr(theme.COLOR_INFORMATION_BAR)
self.addstr('[', color)
self.addstr(jid.bare,
to_curses_attr(theme.COLOR_CONVERSATION_NAME))