Skip to content

Commit

Permalink
Add unicode prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
makeajourney committed Jan 10, 2019
1 parent 51b4070 commit 1f305c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/io/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -2545,7 +2545,7 @@ def _infer_columns(self):

while cur_count > 0:
counts[col] = cur_count + 1
col = "{column}.{count}".format(
col = u'{column}.{count}'.format(
column=col, count=cur_count)
cur_count = counts[col]

Expand Down

0 comments on commit 1f305c8

Please sign in to comment.