We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
InteractiveUtils.versioninfo(; verbose = true)
1 parent 294b0df commit 5289a5eCopy full SHA for 5289a5e
stdlib/InteractiveUtils/src/InteractiveUtils.jl
@@ -118,7 +118,7 @@ function versioninfo(io::IO=stdout; verbose::Bool=false)
118
if verbose
119
cpuio = IOBuffer() # print cpu_summary with correct alignment
120
Sys.cpu_summary(cpuio)
121
- for (i, line) in enumerate(split(String(take!(cpuio)), "\n"))
+ for (i, line) in enumerate(split(chomp(String(take!(cpuio))), "\n"))
122
prefix = i == 1 ? " CPU: " : " "
123
println(io, prefix, line)
124
end
0 commit comments