mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 03:54:50 +00:00
Fix missing text if it's before a color tag
This commit is contained in:
parent
9a43ec8258
commit
714cd0ed80
1 changed files with 3 additions and 0 deletions
|
@ -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 '}}'")
|
||||
|
|
Loading…
Add table
Reference in a new issue