Skip to content

Commit 59c1a9f

Browse files
authored
Merge pull request #570 from CodeForPhilly/569-fix-360-data-view-error
569: Fix string interpolation
2 parents 45ebc7f + 3aa1dbf commit 59c1a9f

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)