浏览代码

Merge pull request #1243 from jonathn/fix-unicode-tree

Fix unicode rendering of deps tree (issue #1140)
pull/1244/head
Fred Hebert 9 年前
提交者 GitHub
父节点
当前提交
aa273a15d5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/rebar_prv_deps_tree.erl

+ 1
- 1
src/rebar_prv_deps_tree.erl 查看文件

@ -70,7 +70,7 @@ print_children(Prefix, [{Name, Vsn, Source} | Rest], Dict, Verbose) ->
[Prefix, " "]; [Prefix, " "];
_ -> _ ->
io:format("~ts~ts", [Prefix, <<226,148,156,226,148,128,32>>]), %Binary for utf8% 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, end,
io:format("~ts~ts~ts (~ts)~n", [Name, <<226,148,128>>, Vsn, type(Source, Verbose)]), %Binary for utf8% io:format("~ts~ts~ts (~ts)~n", [Name, <<226,148,128>>, Vsn, type(Source, Verbose)]), %Binary for utf8%
case dict:find(Name, Dict) of case dict:find(Name, Dict) of

正在加载...
取消
保存