diff --git a/holoviews/plotting/bokeh/plot.py b/holoviews/plotting/bokeh/plot.py index 53a7ed5d7a..dab406f97a 100644 --- a/holoviews/plotting/bokeh/plot.py +++ b/holoviews/plotting/bokeh/plot.py @@ -3,8 +3,7 @@ import param -from bokeh.models import (ColumnDataSource, VBox, HBox, Column, - GridPlot as BokehGridPlot, Div) +from bokeh.models import (ColumnDataSource, VBox, HBox, Column, Div) from bokeh.models.widgets import Panel, Tabs from ...core import (OrderedDict, CompositeOverlay, Store, Layout, GridMatrix, @@ -20,6 +19,8 @@ if bokeh_version >= '0.12': from bokeh.layouts import gridplot +else: + from bokeh.models import GridPlot as BokehGridPlot class BokehPlot(DimensionedPlot):