diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-11-15 14:41:41 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-11-15 14:41:41 +0100 |
commit | aa7bf2e8158f43ce1b058e3ccd9da34874472434 (patch) | |
tree | 041ec21faf6e3a6d328428722a4471aa587ba3b2 | |
parent | 4686f826ede3cdc14c282f93bb5bd5662289c7f1 (diff) | |
parent | d59fafa9b29012f9ed03381bf852e603ee288026 (diff) | |
download | CompetIA-ocaml-3.12.tar.gz CompetIA-ocaml-3.12.zip |
Merge branch 'master' into ocaml-3.12ocaml-3.12
-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) |