aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2016-04-06 17:54:31 +0200
committerBadlop <badlop@process-one.net>2016-04-06 17:55:19 +0200
commit27b4217a9df0e8a7172c550091b8eb57250efe09 (patch)
tree03147461360eccf7d15bdb87a50e861750fbbead /src
parentBetter error message in logs (diff)
Tweak srg_get_info result formatting (#1048)
Diffstat (limited to 'src')
-rw-r--r--src/mod_admin_extra.erl3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mod_admin_extra.erl b/src/mod_admin_extra.erl
index c5525143e..cb7947876 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)];