Closed 3wnbr1 closed 3 years ago
It seems like the escape \e is not part of the POSIX standard. Therefore on macOS you will experience outputs like [\e[92m+\e[0m] Done
\e
[\e[92m+\e[0m] Done
Changing to the octal escape code \033 like python colorama fixes the issue.
\033
Thanks Ewen!
It seems like the escape
\e
is not part of the POSIX standard. Therefore on macOS you will experience outputs like[\e[92m+\e[0m] Done
Changing to the octal escape code
\033
like python colorama fixes the issue.