Tweak srg_get_info result formatting (#1048)

This commit is contained in:
Badlop 2016-04-06 17:54:31 +02:00
parent a9e50468b6
commit 27b4217a9d
1 changed files with 1 additions and 2 deletions

View File

@ -1309,8 +1309,7 @@ srg_get_info(Group, Host) ->
Os when is_list(Os) -> Os;
error -> []
end,
[{jlib:atom_to_binary(Title),
io_lib:format("~p", [btl(Value)])} || {Title, Value} <- Opts].
[{jlib:atom_to_binary(Title), btl(Value)} || {Title, Value} <- Opts].
btl([]) -> [];
btl([B|L]) -> [btl(B)|btl(L)];