Skip to content

Commit bb9760a

Browse files
authored
Merge pull request #882 from hubmapconsortium/yuanzhou-patch-1
Fix missing f-string in log message
2 parents e80f5db + 566849b commit bb9760a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1552,7 +1552,7 @@ def update_entity(id):
15521552

15531553
# Also reindex the updated entity node in elasticsearch via search-api
15541554
logger.log(logging.INFO
1555-
,"Re-indexing for modification of {entity_dict['entity_type']}"
1555+
,f"Re-indexing for modification of {entity_dict['entity_type']}"
15561556
f" with UUID {entity_dict['uuid']}")
15571557

15581558
reindex_entity(entity_dict['uuid'], user_token)

0 commit comments

Comments
 (0)