We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0201da commit 1308d89Copy full SHA for 1308d89
1 file changed
util/gnu-json-result.py
@@ -34,7 +34,8 @@
34
)
35
if result:
36
current[path.name] = result.group(1)
37
- except:
38
- pass
+ except Exception as e:
+ print(f"Error processing file {path}: {e}", file=sys.stderr)
39
+
40
41
print(json.dumps(out, indent=2, sort_keys=True))
0 commit comments