We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bde46c commit 4589289Copy full SHA for 4589289
1 file changed
src/pkgcheck/reporters.py
@@ -283,7 +283,7 @@ def _consume_reports_generator(self) -> T_process_report:
283
284
while True:
285
result = yield
286
- attrs = vars(result)
+ attrs = vars(result).copy()
287
attrs.update((k, getattr(result, k)) for k in properties)
288
s = formatter.format(self.format_str, **attrs)
289
# output strings with at least one valid expansion or non-whitespace character
0 commit comments