From eac84e9ccba33686e04adc8243f7166115f77b2f Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Tue, 30 Nov 2021 00:18:09 +0700 Subject: [PATCH] Fix help commands output when there is no options --- sources/Commands/BuiltInCommands/ACommandHelp.uc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/Commands/BuiltInCommands/ACommandHelp.uc b/sources/Commands/BuiltInCommands/ACommandHelp.uc index c7c9ddf..909a5db 100644 --- a/sources/Commands/BuiltInCommands/ACommandHelp.uc +++ b/sources/Commands/BuiltInCommands/ACommandHelp.uc @@ -219,8 +219,8 @@ private final function PrintOption( { cout.Write(T(TSPACE)); PrintParameters(cout, option.required, option.optional); - cout.Flush(); } + cout.Flush(); // Description if (option.description != none && !option.description.IsEmpty()) { cout.WriteBlock(option.description);