Skip to content

Commit 3aa1dbf

Browse files
committed
Fix string interpolation
1 parent 103f92e commit 3aa1dbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/api/common_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def get_support_oview(matching_id):
382382

383383

384384
else: # len(rows) == 0
385-
logger.warn('No SF contact IDs found for matching_id %', str(matching_id))
385+
logger.warn('No SF contact IDs found for matching_id %s', str(matching_id))
386386
oview_fields['number_of_gifts'] = 0 # Marker for no data
387387
return jsonify(oview_fields)
388388

0 commit comments

Comments
 (0)