Skip to content

Commit

Permalink
Fixed small python 3 bug in bokeh PathPlot
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jul 28, 2016
1 parent 1168d72 commit a6cae95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/path.py
Expand Up @@ -40,7 +40,7 @@ def get_batched_data(self, element, ranges=None, empty=False):
elmapping['line_color'] = 'color'
if isinstance(val, tuple):
val = rgb2hex(val)
data['color'] += [val for _ in range(len(eldata.values()[0]))]
data['color'] += [val for _ in range(len(list(eldata.values())[0]))]
return data, elmapping


Expand Down

0 comments on commit a6cae95

Please sign in to comment.