Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions distributions/validate-modern.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
def subset(inner, outer) -> bool:
for key, value in inner:
if key not in outer:
return True
return False

if not node_equals(value, outer[key]):
return False
Expand Down Expand Up @@ -161,7 +161,7 @@ def main(manifest: str, tar: str, compare_with_branch: str, repo_path: str, arm6

sys.exit(1 if errors else 0)

except:
except Exception:
if debug:
import traceback
traceback.print_exc()
Expand Down
Loading