Skip to content

Commit f04898c

Browse files
committed
add string formatting symbol
1 parent 1e46f11 commit f04898c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/parsers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2563,7 +2563,7 @@ def _infer_columns(self):
25632563

25642564
while cur_count > 0:
25652565
counts[col] = cur_count + 1
2566-
col = '{column}.{count}'.format(
2566+
col = '{column!s}.{count}'.format(
25672567
column=col, count=cur_count)
25682568
cur_count = counts[col]
25692569

0 commit comments

Comments
 (0)