Skip to content

Commit dac26bb

Browse files
committed
Update colors
1 parent a4b9981 commit dac26bb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

seleniumbase/console_scripts/logo_helper.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
http://www.patorjk.com/software/taag/#p=display&f=Slant&t=SeleniumBase """
44

55
import colorama
6+
import sys
67

78
r'''
89
______ __ _ ____
@@ -20,6 +21,13 @@ def get_seleniumbase_logo():
2021
c3 = colorama.Back.CYAN
2122
c4 = colorama.Back.GREEN
2223
cr = colorama.Style.RESET_ALL
24+
if "linux" in sys.platform:
25+
# Skip colors on Linux
26+
c1 = ''
27+
c2 = ''
28+
c3 = ''
29+
c4 = ''
30+
cr = ''
2331
sb = " "
2432
sb += cr
2533
sb += "\n"

0 commit comments

Comments
 (0)