Skip to content

Commit

Permalink
Python 3 fix in InfoPrinter.info method
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Jan 11, 2016
1 parent f7670ac commit eb2bcc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/pprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def info(cls, obj, ansi=False, backend='matplotlib', visualization=True, pattern
plot_class = cls.store.registry[backend].get(obj if isclass else type(obj), None)
# Special case to handle PlotSelectors
if hasattr(plot_class, 'plot_classes'):
plot_class = plot_class.plot_classes.values()[0]
plot_class = list(plot_class.plot_classes.values())[0]


if visualization is False or plot_class is None:
Expand Down

0 comments on commit eb2bcc8

Please sign in to comment.