From 02cb3d93fd770ebd77497b482249a12ec8c51ab6 Mon Sep 17 00:00:00 2001 From: Evgeny Khramtsov Date: Fri, 25 Oct 2019 18:18:04 +0300 Subject: Don't lowercase first letter in reason string --- src/econf.erl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/econf.erl b/src/econf.erl index 994f7e96e..6b21b1113 100644 --- a/src/econf.erl +++ b/src/econf.erl @@ -148,8 +148,7 @@ format_error({bad_enum, Known, Bad} = Why, Ctx) -> format_error({bad_yaml, _, _} = Why, _) -> format_error(Why); format_error(Reason, Ctx) -> - [H|T] = format_error(Reason), - yconf:format_ctx(Ctx) ++ ": " ++ [string:to_lower(H)|T]. + yconf:format_ctx(Ctx) ++ ": " ++ format_error(Reason). format_error({bad_db_type, _, Atom}) -> format("unsupported database: ~ts", [Atom]); -- cgit v1.2.3