From 7e85c3e5c0a4e348a71f089615f81eefaa0753d5 Mon Sep 17 00:00:00 2001 From: Linmiao Xu Date: Wed, 3 Jul 2024 22:02:52 -0400 Subject: [PATCH] Fix typo --- worker/games.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker/games.py b/worker/games.py index f65a2629b..8b26b15b7 100644 --- a/worker/games.py +++ b/worker/games.py @@ -1134,7 +1134,7 @@ def generate_tune_options(params): stockfish_bin = None for arg in cmd: if arg.startswith('cmd=./'): - stockfish_bin = param.split('cmd=./')[-1] + stockfish_bin = arg.split('cmd=./')[-1] break def get_bench_stats(stockfish_bin, nnue_filename):