mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-01 21:21:15 -03:00
Fix missing bool to string cast causing errors
This commit is contained in:
@@ -315,7 +315,7 @@ def unparse_color(col):
|
||||
if col["bold"]:
|
||||
ret += " --bold"
|
||||
if col["underline"] is not None:
|
||||
ret += " --underline=" + col["underline"]
|
||||
ret += " --underline=" + str(col["underline"])
|
||||
if col["italics"]:
|
||||
ret += " --italics"
|
||||
if col["dim"]:
|
||||
|
||||
Reference in New Issue
Block a user