Skip to content

Commit

Permalink
Add missing space to the NotImplementedError's message for compound d…
Browse files Browse the repository at this point in the history
…types (pandas-dev#17140)
  • Loading branch information
FKint authored and jowens committed Sep 20, 2017
1 parent 9a50c21 commit 5759eff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def _validate_dtype(self, dtype):
# a compound dtype
if dtype.kind == 'V':
raise NotImplementedError("compound dtypes are not implemented"
"in the {0} constructor"
" in the {0} constructor"
.format(self.__class__.__name__))

return dtype
Expand Down

0 comments on commit 5759eff

Please sign in to comment.