Skip to content

Commit

Permalink
Merge pull request Ericsson#1742 from csordasmarton/fix-cmd
Browse files Browse the repository at this point in the history
Fix non existing attribute in command line
  • Loading branch information
gyorb authored Sep 11, 2018
2 parents 6cd878b + 8600dfb commit 2bd99a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcodechecker/cmd/cmd_line_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def handle_list_runs(args):
str(stat.successful) + ')')

codechecker_version = run.codeCheckerVersion \
if run.codecheckerVersion else ''
if run.codeCheckerVersion else ''

rows.append((run.name,
str(run.resultCount),
Expand Down

0 comments on commit 2bd99a0

Please sign in to comment.