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):
123123 # ------------------------------
124124 # head and tail are not supported when external diff tool is called
125125 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+ )
127129 sys .exit (1 )
128130
129131 # lines of context filter is not supported when external diff tool is called
130132 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+ )
132136 sys .exit (1 )
133137
134138 try :
Original file line number Diff line number Diff line change 1-
21ansicolors = {
32 "BLACK" : "\033 [30m" ,
43 "RED" : "\033 [31m" ,
You can’t perform that action at this time.
0 commit comments