Skip to content

Commit

Permalink
output_formatters: Fix "rows" output format.
Browse files Browse the repository at this point in the history
  • Loading branch information
rpavlik committed Feb 24, 2020
1 parent aac5eb0 commit 088cc94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codechecker_common/output_formatters.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def twodim_to_rows(lines):
# Count the column width.
widths = []
for line in lines:
for i, size in enumerate([len(x) for x in line]):
for i, size in enumerate([len(str(x)) for x in line]):
while i >= len(widths):
widths.append(0)
if size > widths[i]:
Expand Down

0 comments on commit 088cc94

Please sign in to comment.