mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-26 16:26:24 +01:00
Print command's reply and newline only when there's something to print.
SVN Revision: 2807
This commit is contained in:
parent
4ac69edfe7
commit
440299656f
@ -197,8 +197,12 @@ process(["help" | Mode]) ->
|
||||
process(Args) ->
|
||||
AccessCommands = get_accesscommands(),
|
||||
{String, Code} = process2(Args, AccessCommands),
|
||||
io:format(String),
|
||||
io:format("\n"),
|
||||
case String of
|
||||
[] -> ok;
|
||||
_ ->
|
||||
io:format(String),
|
||||
io:format("\n")
|
||||
end,
|
||||
Code.
|
||||
|
||||
%% @spec (Args::[string()], AccessCommands) -> {String::string(), Code::integer()}
|
||||
|
Loading…
Reference in New Issue
Block a user