Fix missing text if it's before a color tag

This commit is contained in:
Andrew Resch 2009-04-24 18:19:04 +00:00
parent 9a43ec8258
commit 714cd0ed80
1 changed files with 3 additions and 0 deletions

View File

@ -102,6 +102,9 @@ def parse_color_string(s):
col_index = 0
while s.find("{{") != -1:
begin = s.find("{{")
if begin > 0:
ret.append((curses.color_pair(color_pairs[(schemes["input"][0], schemes["input"][1])]), s[:begin]))
end = s.find("}}")
if end == -1:
raise BadColorString("Missing closing '}}'")