diff options
-rw-r--r-- | poezio/windows/funcs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/poezio/windows/funcs.py b/poezio/windows/funcs.py index 949a46cd..9d596bcc 100644 --- a/poezio/windows/funcs.py +++ b/poezio/windows/funcs.py @@ -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 + '}') |