summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2011-11-07 13:47:23 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-11-08 00:47:56 +0100
commitb3b5d0229eb8156c930b3055971c61f62cf891b9 (patch)
tree4e774735f2e336f6956167411249c430bad760a4 /src
parent8c231287bd65efd0adccd9ca6aeedd3151e8f2cb (diff)
downloadpoezio-b3b5d0229eb8156c930b3055971c61f62cf891b9.tar.gz
poezio-b3b5d0229eb8156c930b3055971c61f62cf891b9.tar.bz2
poezio-b3b5d0229eb8156c930b3055971c61f62cf891b9.tar.xz
poezio-b3b5d0229eb8156c930b3055971c61f62cf891b9.zip
Move a space (for perfectionnists)
Diffstat (limited to 'src')
-rw-r--r--src/windows.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/windows.py b/src/windows.py
index a6b1993b..9fa3e705 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -1528,10 +1528,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()