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
1 changed files with 1 additions and 2 deletions

View File

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