24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-02 21:17:12 +02:00

Fix print of command result that contains ~ (thanks to Tsukasa Hamano)

This commit is contained in:
Badlop 2010-07-03 00:42:54 +02:00
parent e19ac27803
commit 7e90d6cf92

View File

@ -201,8 +201,7 @@ process(Args) ->
case String of case String of
[] -> ok; [] -> ok;
_ -> _ ->
io:format(String), io:format("~s~n", [String])
io:format("\n")
end, end,
Code. Code.