Skip to content

Commit a6e1bd4

Browse files
committed
BUG: revert unnecessary unicode wrapper in series
1 parent 96ae488 commit a6e1bd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/series.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ def _tidy_repr(self, max_vals=20):
569569
length=False,
570570
name=False)
571571
result = head + '\n...\n' + tail
572-
namestr = "Name: %s, " % str(unicode(self.name)) if self.name else ""
572+
namestr = "Name: %s, " % str(self.name) if self.name else ""
573573
result = '%s\n%sLength: %d' % (result, namestr, len(self))
574574
return result
575575

0 commit comments

Comments
 (0)