diff options
author | Jordan Wilberding <[email protected]> | 2013-09-16 10:30:15 -0700 |
---|---|---|
committer | Jordan Wilberding <[email protected]> | 2013-09-16 10:30:15 -0700 |
commit | 47d157ee780c9c8fde1fc66ebc769ac7c10f0521 (patch) | |
tree | 533ba1b9ee980a664aaad19e3b6c6d15176a4cce /src/rlx_topo.erl | |
parent | 55f0f5aa4c25d21171113a75f91a37d12a4c78ee (diff) | |
parent | 26d1d19cc204d3ba63037b703f1b040a960d9725 (diff) | |
download | relx-47d157ee780c9c8fde1fc66ebc769ac7c10f0521.tar.gz relx-47d157ee780c9c8fde1fc66ebc769ac7c10f0521.tar.bz2 relx-47d157ee780c9c8fde1fc66ebc769ac7c10f0521.zip |
Misc fixes, log improvements and README improvements
Diffstat (limited to 'src/rlx_topo.erl')
-rw-r--r-- | src/rlx_topo.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rlx_topo.erl b/src/rlx_topo.erl index 11928c1..1b3593b 100644 --- a/src/rlx_topo.erl +++ b/src/rlx_topo.erl @@ -71,9 +71,9 @@ format_error({cycle, Pairs}) -> "before we can continue:\n", case Pairs of [{P1, P2}] -> - [rlx_util:indent(1), erlang:atom_to_list(P2), "->", erlang:atom_to_list(P1)]; + [rlx_util:indent(2), erlang:atom_to_list(P2), "->", erlang:atom_to_list(P1)]; [{P1, P2} | Rest] -> - [rlx_util:indent(1), erlang:atom_to_list(P2), "->", erlang:atom_to_list(P1), + [rlx_util:indent(2), erlang:atom_to_list(P2), "->", erlang:atom_to_list(P1), [["-> ", erlang:atom_to_list(PP2), " -> ", erlang:atom_to_list(PP1)] || {PP1, PP2} <- Rest]]; [] -> [] |