summaryrefslogtreecommitdiff
path: root/src/windows.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows.py')
-rw-r--r--src/windows.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/windows.py b/src/windows.py
index 612f78ec..f399d940 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -1527,10 +1527,11 @@ class ContactInfoWin(Win):
self.finish_line(get_theme().COLOR_INFORMATION_BAR)
self.addstr(1, 0, 'Subscription: %s' % (contact.get_subscription(),))
if contact.get_ask():
+ self.addstr(' ')
if contact.get_ask() == 'asked':
- self.addstr(' Ask: %s' % (contact.get_ask(),), to_curses_attr(get_theme().COLOR_HIGHLIGHT_NICK))
+ self.addstr('Ask: %s' % (contact.get_ask(),), to_curses_attr(get_theme().COLOR_HIGHLIGHT_NICK))
else:
- self.addstr(' Ask: %s' % (contact.get_ask(),))
+ self.addstr('Ask: %s' % (contact.get_ask(),))
self.finish_line()