[Github-comments] [geany/geany] Refs #2615 - Convert create_py_tags.py to Python 3 (#2630)
Claude Paroz
notifications at xxxxx
Wed Sep 22 07:37:46 UTC 2021
@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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20210922/1e2309c7/attachment.htm>
More information about the Github-comments
mailing list