Skip to content

Commit

Permalink
Fix error in mcy list by @punzik fixes issue #40
Browse files Browse the repository at this point in the history
  • Loading branch information
mmicko committed Apr 10, 2024
1 parent 54ea609 commit a7e686c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcy.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ def list_command(filter, output, details, trace):
print(file=output)

if details:
print(f" {mut}" % mut, file=output)
print(f" {mut}", file=output)
for tst, res in db.execute("SELECT test, result FROM results WHERE mutation_id = ?", [mid]):
print(f" result from \"{tst}\": {res}", file=output)
print(file=output)
Expand Down

0 comments on commit a7e686c

Please sign in to comment.