mirror of https://github.com/zulip/zulip.git
log-search: Fix precedence in no-color case.
This commit is contained in:
parent
0019ce639c
commit
95abcffb75
|
@ -448,7 +448,7 @@ def print_line(
|
|||
url,
|
||||
]
|
||||
|
||||
print(color + " ".join([p for p in parts if p is not None]) + ENDC if use_color else "")
|
||||
print(color + " ".join([p for p in parts if p is not None]) + (ENDC if use_color else ""))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in New Issue