@claudep commented on this pull request.
> @@ -293,7 +303,10 @@ def main():
parser.add_builtins()
for filename in args:
- parser.process_file(filename)
+ try:
+ parser.process_file(filename)
+ except (SystemExit, ImportError, TypeError):
Probably I got those errors at some point when working on this. You can always
try to remove them and you will see if anyone complain in the future.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/2630#discussion_r713671419