From 66c4f02c8ef8bb1d5f67086b24f65d2557f4d13d Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Tue, 22 Jan 2019 21:07:25 +0100 Subject: Fix syntax errors in the previous commit. --- poezio/windows/info_wins.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'poezio/windows/info_wins.py') 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)) -- cgit v1.2.3