Skip to content

Commit

Permalink
fix typo in header when printing manifest status
Browse files Browse the repository at this point in the history
(cherry picked from commit 19af2115037ff936666d9dd2e7940263c2c88c99)
  • Loading branch information
KristofferC committed Mar 16, 2018
1 parent 73b5483 commit 540a8c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stdlib/Pkg3/src/Display.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ function status(ctx::Context, mode::PackageMode, use_as_api=false)
c_diff = filter!(x->x.old != x.new, manifest_diff(ctx, m₀, m₁))
if !isempty(c_diff)
if !use_as_api
printpkgstyle(ctx, :Status, pathrepr(env, env.project_file); ignore_indent=true)
print_diff(c_diff)
printpkgstyle(ctx, :Status, pathrepr(ctx, env.manifest_file); ignore_indent=true)
print_diff(ctx, c_diff)
end
diff = Base.vcat(c_diff, diff)
end
Expand Down

0 comments on commit 540a8c5

Please sign in to comment.