File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -123,12 +123,16 @@ def run(argv):
123
123
# ------------------------------
124
124
# head and tail are not supported when external diff tool is called
125
125
if args .head or args .tail :
126
- sys .stderr .write (f"[ERROR] The head and tail options are not supported with external diff executable calls.{ os .linesep } " )
126
+ sys .stderr .write (
127
+ f"[ERROR] The head and tail options are not supported with external diff executable calls.{ os .linesep } "
128
+ )
127
129
sys .exit (1 )
128
130
129
131
# lines of context filter is not supported when external diff tool is called
130
132
if args .lines != 3 :
131
- sys .stderr .write (f"[ERROR] The lines option is not supported with external diff executable calls.{ os .linesep } " )
133
+ sys .stderr .write (
134
+ f"[ERROR] The lines option is not supported with external diff executable calls.{ os .linesep } "
135
+ )
132
136
sys .exit (1 )
133
137
134
138
try :
Original file line number Diff line number Diff line change 1
-
2
1
ansicolors = {
3
2
"BLACK" : "\033 [30m" ,
4
3
"RED" : "\033 [31m" ,
You can’t perform that action at this time.
0 commit comments