diff options
author | Tristan Sloughter <[email protected]> | 2014-11-03 20:47:54 -0600 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2014-11-06 10:03:08 -0600 |
commit | 79bbf33cbd46c9a1beeae00424e14969608385ba (patch) | |
tree | 19e76b0116164ad7fd037b93f34e15ac297bb61a /src/rlx_dscv_util.erl | |
parent | f74f15b95c7dd6b27cd415909cf644977ebb88c1 (diff) | |
download | relx-79bbf33cbd46c9a1beeae00424e14969608385ba.tar.gz relx-79bbf33cbd46c9a1beeae00424e14969608385ba.tar.bz2 relx-79bbf33cbd46c9a1beeae00424e14969608385ba.zip |
fix modules thta still were using format_error/1
Diffstat (limited to 'src/rlx_dscv_util.erl')
-rw-r--r-- | src/rlx_dscv_util.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rlx_dscv_util.erl b/src/rlx_dscv_util.erl index fefdbce..90153e9 100644 --- a/src/rlx_dscv_util.erl +++ b/src/rlx_dscv_util.erl @@ -25,7 +25,7 @@ -module(rlx_dscv_util). -export([do/2, - format_error/1]). + format_error/2]). -include("relx.hrl"). @@ -54,8 +54,8 @@ do(ProcessDir, LibDirs) -> ec_file:type(LibDir)) end, LibDirs)). --spec format_error([ErrorDetail::term()]) -> iolist(). -format_error(ErrorDetails) +-spec format_error([ErrorDetail::term()], rlx_state:t()) -> iolist(). +format_error(ErrorDetails, _) when erlang:is_list(ErrorDetails) -> [[format_detail(ErrorDetail), "\n"] || ErrorDetail <- ErrorDetails]. |