diff options
author | Badlop <badlop@process-one.net> | 2016-04-06 17:54:31 +0200 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2016-04-06 17:55:19 +0200 |
commit | 27b4217a9df0e8a7172c550091b8eb57250efe09 (patch) | |
tree | 03147461360eccf7d15bdb87a50e861750fbbead /src | |
parent | Better error message in logs (diff) |
Tweak srg_get_info result formatting (#1048)
Diffstat (limited to 'src')
-rw-r--r-- | src/mod_admin_extra.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mod_admin_extra.erl b/src/mod_admin_extra.erl index c5525143..cb794787 100644 --- a/src/mod_admin_extra.erl +++ b/src/mod_admin_extra.erl @@ -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)]; |