fix fstring

This commit is contained in:
Kenneth Kehl
2024-02-02 10:29:01 -08:00
parent fad3d4f473
commit 65bc37d203

View File

@@ -123,7 +123,7 @@ def extract_phones(job):
if phone_index >= len(row):
phones[job_row] = "Error: can't retrieve phone number"
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:
my_phone = row[phone_index]