Skip to content

Commit

Permalink
fix autoload
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin Peter committed Jul 6, 2023
1 parent 2590247 commit ae4dc76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spyder_kernels/console/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ def set_matplotlib_conf(self, conf):
if pylab_autoload_n in conf or pylab_backend_n in conf:
self._set_mpl_backend(
conf.get(pylab_backend_n, inline_backend),
pylab=conf.get(pylab_backend_n, False)
pylab=conf.get(pylab_autoload_n, False)
)
if figure_format_n in conf:
self._set_config_option(
Expand Down

0 comments on commit ae4dc76

Please sign in to comment.