Merge branch 'feat-eof-exit' of https://github.com/page-down/kitty

This commit is contained in:
Kovid Goyal 2022-02-24 19:18:52 +05:30
commit 6d3995d4ac
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -32,7 +32,7 @@ def real_main(args: List[str]) -> None:
def main(args: List[str]) -> None:
try:
with suppress(KeyboardInterrupt):
with suppress(KeyboardInterrupt, EOFError):
real_main(args)
except Exception:
import traceback