Skip to content

Commit

Permalink
Fixed streams bug in GenericCompositePlot
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Oct 24, 2016
1 parent b75c399 commit bb87184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/plot.py
Expand Up @@ -928,7 +928,7 @@ def __init__(self, layout, keys=None, dimensions=None, **params):
if top_level:
self.comm = self.init_comm(layout)
self.traverse(lambda x: setattr(x, 'comm', self.comm))
self.streams = [s for streams in layout.traverse(lambda x: get_streams(streams),
self.streams = [s for streams in layout.traverse(lambda x: get_streams(x),
[DynamicMap])
for s in streams]

Expand Down

0 comments on commit bb87184

Please sign in to comment.