diff options
Diffstat (limited to 'src/sosreport')
-rwxr-xr-x | src/sosreport | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sosreport b/src/sosreport index 516cda22..37a88a47 100755 --- a/src/sosreport +++ b/src/sosreport @@ -209,9 +209,9 @@ def textcolor(text, fg, raw=0): if __cmdLineOpts__.nocolors: return text colors = { "black":"30", "red":"31", "green":"32", "brown":"33", "blue":"34", - "purple":"35", "cyan":"36", "lgray":"37", "gray":"1;30", "lred":"1;31", - "lgreen":"1;32", "yellow":"1;33", "lblue":"1;34", "pink":"1;35", - "lcyan":"1;36", "white":"1;37" } + "purple":"35", "cyan":"36", "lgray":"37", "gray":"1;30", "lred":"1;31", + "lgreen":"1;32", "yellow":"1;33", "lblue":"1;34", "pink":"1;35", + "lcyan":"1;36", "white":"1;37" } opencol = "\033[" closecol = "m" clear = opencol + "0" + closecol |