Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion base/loading.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2022,7 +2022,10 @@ function warn_if_already_loaded_different(uuidkey::PkgId)
end
end
@warn warnstr
push!(already_warned_path_change_pkgs, uuidkey.uuid)
# Toplevel modules have a `uuid` of `Nothing`
if uuidkey.uuid !== nothing
push!(already_warned_path_change_pkgs, uuidkey.uuid)
end
end
end
end
Expand Down