Skip to content

Commit b237229

Browse files
Using python instead of python3
1 parent 5a956c6 commit b237229

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

grcat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python3
1+
#!/usr/bin/env python
22

33
import sys, os, string, re, signal, errno
44

@@ -12,7 +12,7 @@ colours = {
1212
'reverse' : "\033[7m",
1313
'concealed' : "\033[8m",
1414

15-
'black' : "\033[30m",
15+
'black' : "\033[30m",
1616
'red' : "\033[31m",
1717
'green' : "\033[32m",
1818
'yellow' : "\033[33m",
@@ -21,7 +21,7 @@ colours = {
2121
'cyan' : "\033[36m",
2222
'white' : "\033[37m",
2323

24-
'on_black' : "\033[40m",
24+
'on_black' : "\033[40m",
2525
'on_red' : "\033[41m",
2626
'on_green' : "\033[42m",
2727
'on_yellow' : "\033[43m",

0 commit comments

Comments
 (0)