From 65bc37d20322ffb9113286772e2805de76c0be4f Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 2 Feb 2024 10:29:01 -0800 Subject: [PATCH] fix fstring --- app/aws/s3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/aws/s3.py b/app/aws/s3.py index 7ddf9828e..5921141ca 100644 --- a/app/aws/s3.py +++ b/app/aws/s3.py @@ -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]