Improve error handling for web upload of bad CSV
This commit is contained in:
parent
ad0a1aa44a
commit
e9a7bbe48c
2 changed files with 9 additions and 3 deletions
|
@ -54,10 +54,10 @@ class CSVImporter:
|
|||
"Priority",
|
||||
]
|
||||
if header != expected:
|
||||
self.results.get("summaries").append(
|
||||
self.errors.append(
|
||||
f"Inbound data does not have expected columns.\nShould be: {expected}"
|
||||
)
|
||||
return self.results
|
||||
return
|
||||
|
||||
for row in csv_reader:
|
||||
self.line_count += 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue