aboutsummaryrefslogtreecommitdiffstats
path: root/lib/kernel/src/group_history.erl
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2017-06-09 12:15:00 +0200
committerHans Bolinder <[email protected]>2017-06-09 13:24:44 +0200
commit06e679b3652f6757c7d033d97ec9fb4dfc3f532c (patch)
tree25901fe3bd3339198f42a6ec128ba57441d03769 /lib/kernel/src/group_history.erl
parent388a94b62b8322fc5466597816a70274c0269f5b (diff)
downloadotp-06e679b3652f6757c7d033d97ec9fb4dfc3f532c.tar.gz
otp-06e679b3652f6757c7d033d97ec9fb4dfc3f532c.tar.bz2
otp-06e679b3652f6757c7d033d97ec9fb4dfc3f532c.zip
kernel: Improve handling of Unicode filenames
Diffstat (limited to 'lib/kernel/src/group_history.erl')
-rw-r--r--lib/kernel/src/group_history.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/kernel/src/group_history.erl b/lib/kernel/src/group_history.erl
index 5ca5e2d1dd..91f3663cc5 100644
--- a/lib/kernel/src/group_history.erl
+++ b/lib/kernel/src/group_history.erl
@@ -218,7 +218,7 @@ handle_open_error({invalid_header, Term}) ->
[Term]);
handle_open_error({file_error, FileName, Reason}) ->
show('$#erlang-history-file-error',
- "Error handling File ~s. Reason: ~p~n"
+ "Error handling File ~ts. Reason: ~p~n"
"History logging will be disabled.~n",
[FileName, Reason]);
handle_open_error(Err) ->
@@ -309,7 +309,7 @@ show_rename_warning() ->
show_invalid_file_warning(FileName) ->
show('$#erlang-history-invalid-file',
- "Shell history expects to be able to use the file ~s "
+ "Shell history expects to be able to use the file ~ts "
"which currently exists and is not a file usable for "
"history logging purposes. History logging will be "
"disabled.~n", [FileName]).