mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 22:43:42 +00:00
log-search: Fix precedence in no-color case.
This commit is contained in:
committed by
Tim Abbott
parent
0019ce639c
commit
95abcffb75
@@ -448,7 +448,7 @@ def print_line(
|
|||||||
url,
|
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__":
|
if __name__ == "__main__":
|
||||||
|
|||||||
Reference in New Issue
Block a user