Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add brackets
  • Loading branch information
tdamsma committed Jan 27, 2019
commit ca9c36e465039c52b35d55d2b72a41bb7a82d7ce
2 changes: 1 addition & 1 deletion pandas/io/excel.py
Original file line number Diff line number Diff line change
Expand Up @@ -1729,7 +1729,7 @@ def write_table(self, cells, sheet_name=None, startrow=0, startcol=0,
if col in header_cells:
val = str(header_cells[col])
else:
val = 'Column%d' % col + 1
val = 'Column%d' % (col + 1)
wks.cell(
row=startrow + 1,
column=startcol + col + 1,
Expand Down