Skip to content

Commit b3addb7

Browse files
Replace missing placeholder in debug statement in scaffold_atlas.py (#62)
1 parent 0af5c07 commit b3addb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/scaffold_atlas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def upload_data(db: Database, filename: Path) -> None:
4444
)
4545
collections = [c["name"] for c in db.list_collections()]
4646
if collection_name in collections:
47-
logger.debug("Clearing existing collection", collection_name)
47+
logger.debug("Clearing existing collection %s", collection_name)
4848
db[collection_name].delete_many({})
4949

5050
if not isinstance(loaded_collection, list):

0 commit comments

Comments
 (0)