diff options
author | mathieui <mathieui@mathieui.net> | 2011-11-07 13:47:23 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-08 00:47:56 +0100 |
commit | b3b5d0229eb8156c930b3055971c61f62cf891b9 (patch) | |
tree | 4e774735f2e336f6956167411249c430bad760a4 /src/windows.py | |
parent | 8c231287bd65efd0adccd9ca6aeedd3151e8f2cb (diff) | |
download | poezio-b3b5d0229eb8156c930b3055971c61f62cf891b9.tar.gz poezio-b3b5d0229eb8156c930b3055971c61f62cf891b9.tar.bz2 poezio-b3b5d0229eb8156c930b3055971c61f62cf891b9.tar.xz poezio-b3b5d0229eb8156c930b3055971c61f62cf891b9.zip |
Move a space (for perfectionnists)
Diffstat (limited to 'src/windows.py')
-rw-r--r-- | src/windows.py | 5 |
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() |