Skip to content

Commit 8e6dcfb

Browse files
authored
correctly forward io argument in show method (#1306)
2 parents 799ca1a + d550716 commit 8e6dcfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lbt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ function Base.show(io::IO, mime::MIME{Symbol("text/plain")}, lbt::LBTConfig)
188188
"UNKWN"
189189
end
190190
print(io, char, " [", interface_str,"] ", basename(l.libname))
191-
i !== length(lbt.loaded_libs) && println()
191+
i !== length(lbt.loaded_libs) && println(io)
192192
end
193193
end
194194

0 commit comments

Comments
 (0)