diff options
-rw-r--r-- | data/default_config.cfg | 2 | ||||
-rw-r--r-- | src/window.py | 10 |
2 files changed, 7 insertions, 5 deletions
diff --git a/data/default_config.cfg b/data/default_config.cfg index a1d1c743..72470335 100644 --- a/data/default_config.cfg +++ b/data/default_config.cfg @@ -2,6 +2,6 @@ server = louiz.org port = 5222 resource = poezio -default_nick = louiz_on_poezio +default_nick = poezio rooms = poezio@conference.codingteam.net:discussion@chat.jabberfr.org logfile = logs diff --git a/src/window.py b/src/window.py index 2e51552a..a90031fa 100644 --- a/src/window.py +++ b/src/window.py @@ -120,10 +120,12 @@ class TextWin(object): win = self.wins[room.name].win users = room.users if len(line) == 2: - win.addstr('\n['+line[0].strftime("%H:%M:%S") + "] ") - win.attron(curses.color_pair(8)) - win.addstr(line[1]) - win.attroff(curses.color_pair(8)) + try: + win.addstr('\n['+line[0].strftime("%H:%M:%S") + "] ") + win.attron(curses.color_pair(8)) + win.addstr(line[1]) + win.attroff(curses.color_pair(8)) + except: # exception happens on resize, but it doesn't change anything... elif len(line) == 3: for user in users: if user.nick == line[1]: |