Skip to content

Commit

Permalink
Fixed typo in exception raised by ItemTable
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Feb 23, 2015
1 parent 4dea5a8 commit 2a33544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/element/tabular.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def cols(self):

def __init__(self, data, **params):
if type(data) == dict:
raise ValueError("ItemTable cannot accept a standard Python dictionary"
raise ValueError("ItemTable cannot accept a standard Python dictionary "
"as a well-defined item ordering is required.")
elif isinstance(data, OrderedDict): pass
elif isinstance(data, list):
Expand Down

0 comments on commit 2a33544

Please sign in to comment.