fixed options error message

This commit is contained in:
dragon 2022-10-22 16:42:11 +02:00
commit 8284fdc1a0

View file

@ -56,7 +56,7 @@ namespace ExeToBat
}
catch (OptionException e)
{
System.Console.WriteLine("Invalid arguments: {0}", e);
System.Console.WriteLine("Invalid arguments: {0}", e.Message);
Help(options);
}
}