Skip to content

Commit

Permalink
Clean up extra newline
Browse files Browse the repository at this point in the history
  • Loading branch information
linrock committed Jul 4, 2024
1 parent 0357164 commit 8fe2693
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker/games.py
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,7 @@ def get_bench_stats(stockfish_bin, nnue_filename):
except (OSError, subprocess.SubprocessError) as e:
traceback.print_exc()

return "\n".join(stderr.split("\n")[-4:])
return "\n".join(stderr.strip().split("\n")[-4:])

print()
print(f"w_spsa_nnue: {w_spsa_nnue}")
Expand Down

0 comments on commit 8fe2693

Please sign in to comment.