Skip to content

Commit

Permalink
Merge pull request #1561 from dipu-bd:dev
Browse files Browse the repository at this point in the history
Prable fix for types
  • Loading branch information
dipu-bd authored Sep 8, 2022
2 parents 9894845 + a093dc9 commit 2d42df4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lncrawl/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ def start_app():
if getattr(sys, 'frozen', False) and hasattr(sys, '_MEIPASS') and not args.close_directly:
try:
input('Press ENTER to exit...')
except KeyboardInterrupt | EOFError:
except KeyboardInterrupt:
pass
except EOFError:
pass
# end try
# end if
Expand Down

0 comments on commit 2d42df4

Please sign in to comment.