Skip to content

Commit

Permalink
fix(batch): missing space in BatchProcessingError message (#1201)
Browse files Browse the repository at this point in the history
  • Loading branch information
mew1033 authored May 13, 2022
1 parent 666d21c commit 1ca74d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws_lambda_powertools/utilities/batch/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def _clean(self):

if self._entire_batch_failed():
raise BatchProcessingError(
msg=f"All records failed processing. {len(self.exceptions)} individual errors logged"
msg=f"All records failed processing. {len(self.exceptions)} individual errors logged "
f"separately below.",

This comment has been minimized.

Copy link
@michaelbrewer

michaelbrewer May 13, 2022

Contributor

the second part not even need to be a f-string either. :)

                msg=f"All records failed processing. {len(self.exceptions)} individual errors logged "
                "separately below.",
child_exceptions=self.exceptions,
)
Expand Down

0 comments on commit 1ca74d3

Please sign in to comment.