Skip to content

Commit

Permalink
名前を加算していたバグ修正
Browse files Browse the repository at this point in the history
  • Loading branch information
TadaoYamaoka committed Apr 5, 2021
1 parent a207fce commit 619fa84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cshogi/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,8 +505,8 @@ def __call__(self, line):
args.pgn, args.no_pgn_moves,
args.display, args.debug,
print_summary=False)
results[i]['engine1_name'] += result['engine1_name']
results[i]['engine2_name'] += result['engine2_name']
results[i]['engine1_name'] = result['engine1_name']
results[i]['engine2_name'] = result['engine2_name']
results[i]['engine1_won'] += result['engine1_won']
results[i]['engine2_won'] += result['engine2_won']
results[i]['draw'] += result['draw']
Expand Down

0 comments on commit 619fa84

Please sign in to comment.