Skip to content

Commit e1f78c5

Browse files
authored
Merge pull request #58 from Turtle-In-Space/master
fix wrong var returned NO_COLOR logic
2 parents f8f54d0 + d0894c2 commit e1f78c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

enum4linux-ng.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ class Colors(Enum):
332332
def __call__(self, message):
333333
if GLOBAL_COLORS:
334334
return f"{self.value}{message}\033[0m"
335-
return msg
335+
return message
336336

337337
class Result:
338338
'''

0 commit comments

Comments
 (0)