Skip to content

Commit

Permalink
Indent items in list of missing targets
Browse files Browse the repository at this point in the history
  • Loading branch information
eramongodb committed Oct 24, 2024
1 parent 79f9912 commit daefc20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .evergreen/mongodl.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ def _import_json_data(self, data: 'Any') -> None:
if missing:
print("Missing targets in DISTRO_ID_TO_TARGET:", file=sys.stderr)
for item in missing:
print(item, file=sys.stderr)
print(f" - {item}", file=sys.stderr)
if os.environ.get("VALIDATE_DISTROS") == "1":
sys.exit(1)

Expand Down

0 comments on commit daefc20

Please sign in to comment.