diff options
Diffstat (limited to 'judge/core.ml')
-rw-r--r-- | judge/core.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/judge/core.ml b/judge/core.ml index 4f4ba0d..c68a1ad 100644 --- a/judge/core.ml +++ b/judge/core.ml @@ -135,7 +135,7 @@ module Core (G: GAME) : CORE = struct "-t", Arg.Set_int pt_tie, "Points granted on tie (+1)"; "-l", Arg.Set_int pt_lose, "Points granted on lose (0)"; "-e", Arg.Set_int pt_elim, "Points granted on eliminated (-1)"; - "-l", Arg.Set log_games, "Log all games (false)"; + "-v", Arg.Set log_games, "Log all games (false)"; ] in Arg.parse args (fun s -> game_dir := s) |