Skip to content

Commit a2d1357

Browse files
committed
fix
1 parent 123aa53 commit a2d1357

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PythonPlot.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ end
3838
function Base.show(io::IO, ::MIME"text/plain", h::LazyHelp)
3939
o = h.o
4040
for k in h.keys
41-
o = o[k]
41+
o = pygetattr(o, k)
4242
end
4343
if hasproperty(o, :__doc__)
4444
print(io, pyconvert(String, o.__doc__))

0 commit comments

Comments
 (0)