Skip to content

Commit d1c4fca

Browse files
committed
Fix pvp output folder name: suffix before timestamp
1 parent 9bc4f33 commit d1c4fca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def main(
3232
p_num = len(players)
3333
p_list = ".".join(sorted(players))
3434
suffix_part = f".{suffix}" if suffix else ""
35-
folder_name = f"PvpTournament.{config['game']['name']}.r{rounds}.s{sims}.p{p_num}.{p_list}.{timestamp}{suffix_part}"
35+
folder_name = f"PvpTournament.{config['game']['name']}.r{rounds}.s{sims}.p{p_num}.{p_list}{suffix_part}.{timestamp}"
3636
if output_dir is None:
3737
full_output_dir = DIR_LOGS / getpass.getuser() / folder_name
3838
else:

0 commit comments

Comments
 (0)