Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
tino097 committed May 6, 2024
1 parent c9ead52 commit 6041af4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/datapusher_plus/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ def _push_to_datastore(task_id, input, dry_run=False, temp_dir=None):
)
except subprocess.CalledProcessError as e:
# return as we can't push an invalid CSV file
validate_error_msg = qsv_validate.stderr
validate_error_msg = e.stderr
logger.error("Invalid CSV! Job aborted: {}.".format(validate_error_msg))
return
logger.info("Well-formed, valid CSV file confirmed...")
Expand Down

0 comments on commit 6041af4

Please sign in to comment.