Skip to content

Commit

Permalink
Merge pull request #1115 from ioam/lod_fix
Browse files Browse the repository at this point in the history
Fixed python3 'lod' bug
  • Loading branch information
jlstevens authored Feb 9, 2017
2 parents a7c4b54 + e0ed723 commit 5278f85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/element.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ def _plot_properties(self, key, plot, element):
if self.border is not None:
for p in ['left', 'right', 'top', 'bottom']:
plot_props['min_border_'+p] = self.border
lod = dict(self.defaults()['lod'], **self.lod)
lod = dict(self.defaults().get('lod', {}), **self.lod)
for lod_prop, v in lod.items():
plot_props['lod_'+lod_prop] = v
return plot_props
Expand Down

0 comments on commit 5278f85

Please sign in to comment.