From daefc20d71c4c83823e75e8aaa8f2f8cdefbdc6c Mon Sep 17 00:00:00 2001 From: Ezra Chung Date: Thu, 24 Oct 2024 15:30:00 -0500 Subject: [PATCH] Indent items in list of missing targets --- .evergreen/mongodl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.evergreen/mongodl.py b/.evergreen/mongodl.py index 96aa6db5..f3115998 100755 --- a/.evergreen/mongodl.py +++ b/.evergreen/mongodl.py @@ -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)