mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-22 08:21:13 -05:00
fix fstring
This commit is contained in:
@@ -123,7 +123,7 @@ def extract_phones(job):
|
|||||||
if phone_index >= len(row):
|
if phone_index >= len(row):
|
||||||
phones[job_row] = "Error: can't retrieve phone number"
|
phones[job_row] = "Error: can't retrieve phone number"
|
||||||
current_app.logger.error(
|
current_app.logger.error(
|
||||||
"Corrupt csv file, missing columns job_id {job_id} service_id {service_id}"
|
"Corrupt csv file, missing columns or possibly a byte order mark in the file"
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
my_phone = row[phone_index]
|
my_phone = row[phone_index]
|
||||||
|
|||||||
Reference in New Issue
Block a user