mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 16:37:27 +00:00
Fix #5113
This commit is contained in:
parent
c747e681a2
commit
ea8bed2a71
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ def main() -> None:
|
|||
write(line)
|
||||
except KeyboardInterrupt:
|
||||
p.send_signal(signal.SIGINT)
|
||||
except EOFError:
|
||||
except (EOFError, BrokenPipeError):
|
||||
pass
|
||||
finally:
|
||||
p.stdout.close()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue