aboutsummaryrefslogtreecommitdiffstats
path: root/lib/reltool/src/reltool.erl
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2017-07-07 12:02:31 +0200
committerSiri Hansen <[email protected]>2017-07-07 12:02:31 +0200
commitcc4de75dcb833610e52c7422b743c43556064a0a (patch)
tree5a81a1ef04482ebce0304dace8e5cd060dd1f920 /lib/reltool/src/reltool.erl
parent60b478cb8398e834668b664e361aa9b6b461e708 (diff)
parent0633801a94a7ad5559ef59edc6ba25a5484d1e33 (diff)
downloadotp-cc4de75dcb833610e52c7422b743c43556064a0a.tar.gz
otp-cc4de75dcb833610e52c7422b743c43556064a0a.tar.bz2
otp-cc4de75dcb833610e52c7422b743c43556064a0a.zip
Merge branch 'siri/unicode-in-release-handling/OTP-14463' into maint
* siri/unicode-in-release-handling/OTP-14463: [sasl] Improve handling of unicode strings and atoms [reltool] Improve handling of unicode strings and atoms
Diffstat (limited to 'lib/reltool/src/reltool.erl')
-rw-r--r--lib/reltool/src/reltool.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/reltool/src/reltool.erl b/lib/reltool/src/reltool.erl
index f6ce5578bc..feb6925044 100644
--- a/lib/reltool/src/reltool.erl
+++ b/lib/reltool/src/reltool.erl
@@ -80,7 +80,7 @@ get_server(WinPid) ->
{ok, _ServerPid} = OK ->
OK;
{error, Reason} ->
- {error, lists:flatten(io_lib:format("~p", [Reason]))}
+ {error, lists:flatten(io_lib:format("~tp", [Reason]))}
end.
%% Stop a server or window process
@@ -93,7 +93,7 @@ stop(Pid) when is_pid(Pid) ->
{'DOWN', Ref, _, _, shutdown} ->
ok;
{'DOWN', Ref, _, _, Reason} ->
- {error, lists:flatten(io_lib:format("~p", [Reason]))}
+ {error, lists:flatten(io_lib:format("~tp", [Reason]))}
end.
%% Internal library function