mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-08 22:28:24 +02:00
Fix generation of url regex for Go
This commit is contained in:
@@ -169,7 +169,7 @@ def run_python_tests(args: Any, go_proc: 'Optional[subprocess.Popen[bytes]]' = N
|
||||
|
||||
def print_go() -> None:
|
||||
try:
|
||||
print(go_proc.stdout.read().decode(), end='', flush=True)
|
||||
print(go_proc.stdout.read().decode('utf-8', 'replace'), end='', flush=True)
|
||||
except KeyboardInterrupt:
|
||||
go_proc.terminate()
|
||||
if go_proc.wait(0.1) is None:
|
||||
|
||||
Reference in New Issue
Block a user