Fix a bug in multiline colored text

if the first, attribute color was negative, the color wasn’t passed on
to the next line.
This commit is contained in:
mathieui 2016-07-14 12:26:31 +02:00
parent 05fa56aea5
commit 275a67864d

View file

@ -3,6 +3,7 @@ Standalone functions used by the modules
"""
import string
DIGITS = string.digits + '-'
from poezio.windows.base_wins import FORMAT_CHAR, format_chars
@ -42,7 +43,7 @@ def parse_attrs(text, previous=None):
attrs.append('u')
elif attr_char == 'b':
attrs.append('b')
if attr_char in string.digits and attr_char:
if attr_char in DIGITS and attr_char:
color_str = text[next_attr_char+1:text.find('}', next_attr_char)]
if color_str:
attrs.append(color_str + '}')