summaryrefslogtreecommitdiff
path: root/src/windows.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows.py')
-rw-r--r--src/windows.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/windows.py b/src/windows.py
index 2352a82a..1bfe49db 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -137,8 +137,13 @@ class Win(object):
self._win.attron(curses.A_BOLD)
if attr_char in string.digits and attr_char != '':
color_str = text[next_attr_char+1:text.find('}', next_attr_char)]
- self._win.attron(to_curses_attr((int(color_str), -1)))
- text = text[next_attr_char+len(color_str)+2:]
+ try:
+ self._win.attron(to_curses_attr((int(color_str), -1)))
+ except:
+ self._win.attron(to_curses_attr((-1, -1)))
+ text = text[next_attr_char+1+2:]
+ else:
+ text = text[next_attr_char+len(color_str)+2:]
else:
text = text[next_attr_char+2:]
next_attr_char = text.find('\x19')