Skip to content

Commit f858c2a

Browse files
committed
BUG: don't send utf8-encoded text to matplotlib, barfs in 1.1.0
1 parent 5198ec8 commit f858c2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tools/plotting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ def _make_plot(self):
901901
kwds = self.kwds.copy()
902902
self._maybe_add_color(has_colors, colors, kwds, style, i)
903903

904-
label = com.pprint_thing(label).encode('utf-8')
904+
label = com.pprint_thing(label) # .encode('utf-8')
905905

906906
mask = com.isnull(y)
907907
if mask.any():

0 commit comments

Comments
 (0)