Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mboudet committed Aug 14, 2024
1 parent 4545225 commit a836f07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checkcel/checkcel.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def _log_validator_failures(self):
try:
# If self.bad is iterable, it contains the fields which
# caused it to fail
for key, values in validator.bad['invalid_unique']:
for key, values in validator.bad['invalid_unique'].items():
wrong_rows = ", ".join([str(val) for val in values])
self.error(
" Value: '{}' in rows: [{}]".format(key, wrong_rows)
Expand Down

0 comments on commit a836f07

Please sign in to comment.