Skip to content

Commit

Permalink
Fixed unassigned variable in GenericCompositePlot
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Sep 10, 2015
1 parent c94027f commit 5c235cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ def _get_frame(self, key):
layout_frame = self.layout.clone(shared_data=False)
nthkey_fn = lambda x: zip(tuple(x.name for x in x.kdims),
list(x.data.keys())[min([key[0], len(x)-1])])
if key == current_key:
if key == self.current_key:
return self.current_frame
else:
self.current_key = key
Expand Down

0 comments on commit 5c235cb

Please sign in to comment.