summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--color.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/color.py b/color.py
index b3a558cd..07d1f6fd 100644
--- a/color.py
+++ b/color.py
@@ -137,7 +137,7 @@ class Coloring(object):
137 if v is None: 137 if v is None:
138 return _Color(fg, bg, attr) 138 return _Color(fg, bg, attr)
139 139
140 v = v.trim().lowercase() 140 v = v.strip().lower()
141 if v == "reset": 141 if v == "reset":
142 return RESET 142 return RESET
143 elif v == '': 143 elif v == '':