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_depsolver.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_depsolver.erl')
-rw-r--r-- | src/rlx_depsolver.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rlx_depsolver.erl b/src/rlx_depsolver.erl index fd26145..c7f2f5c 100644 --- a/src/rlx_depsolver.erl +++ b/src/rlx_depsolver.erl @@ -76,7 +76,7 @@ -module(rlx_depsolver). %% Public Api --export([format_error/1, +-export([format_error/2, format_roots/1, format_culprits/1, format_constraint/1, @@ -326,9 +326,9 @@ filter_packages(PVPairs, RawConstraints) -> %% could not be satisfied -spec format_error({error, {unreachable_package, list()} | {invalid_constraints, [constraint()]} | - list()}) -> iolist(). -format_error(Error) -> - rlx_depsolver_culprit:format_error(Error). + list()}, rlx_state:t()) -> iolist(). +format_error(Error, State) -> + rlx_depsolver_culprit:format_error(Error, State). %% @doc Return a formatted list of roots of the dependency trees which %% could not be satisified. These may also have versions attached. |