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

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