Skip to content

Commit

Permalink
Merge pull request #1243 from jonathn/fix-unicode-tree
Browse files Browse the repository at this point in the history
Fix unicode rendering of deps tree (issue #1140)
  • Loading branch information
ferd authored Jun 18, 2016
2 parents ac69558 + c7b7b90 commit aa273a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rebar_prv_deps_tree.erl
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ print_children(Prefix, [{Name, Vsn, Source} | Rest], Dict, Verbose) ->
[Prefix, " "];
_ ->
io:format("~ts~ts", [Prefix, <<226,148,156,226,148,128,32>>]), %Binary for ├─ utf8%
[Prefix, ""]
[Prefix, <<226,148,130,32,32>>] %Binary for utf8%
end,
io:format("~ts~ts~ts (~ts)~n", [Name, <<226,148,128>>, Vsn, type(Source, Verbose)]), %Binary for ─ utf8%
case dict:find(Name, Dict) of
Expand Down

0 comments on commit aa273a1

Please sign in to comment.