diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-03-30 15:03:36 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-03-30 15:03:36 -0400 |
commit | ab632d4e976187a561b2bd1ffb0448904a3d106a (patch) | |
tree | aa21fd182661dc768548f773bd3e03da9ac5bb57 | |
parent | 411e247a80302bac1137c81d7fa793f7ddca9a0e (diff) |
Actually, git uses cyan for line markers
-rwxr-xr-x | contrib/hldiff.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/hldiff.py b/contrib/hldiff.py index 367dcda..8171625 100755 --- a/contrib/hldiff.py +++ b/contrib/hldiff.py @@ -22,7 +22,7 @@ for line in patch.split("\n"): print(line) else: if line.startswith("@@"): - line = lines_re.sub(f"{Fore.BLUE}@@ \\1 @@{Style.RESET_ALL}", + line = lines_re.sub(f"{Fore.CYAN}@@ \\1 @@{Style.RESET_ALL}", line) print(line) else: |