From 9dde336ddd192d54cf6205249dcf2efb16fffcb7 Mon Sep 17 00:00:00 2001 From: Stephan Schiffels Date: Mon, 5 Dec 2022 15:46:15 +0100 Subject: [PATCH] fixed error out with command line parser --- msmc.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msmc.d b/msmc.d index f7a0654..25f67e6 100644 --- a/msmc.d +++ b/msmc.d @@ -91,7 +91,7 @@ void main(string[] args) { parseCommandLine(args); } catch(Exception e) { - stderr.writeln("error in parsing command line: ", e); + stderr.writeln("error in parsing command line: ", e.msg); exit(0); } run();