Skip to content

Commit

Permalink
python3 fix (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
dilshod committed Jul 1, 2014
1 parent a93cdc0 commit 55aeec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xlsx2csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ def _range(self, rangeStr):
col = ""
while t >= 0:
col = chr(t % 26 + 65) + col
t = (t / 26) - 1
t = t // 26 - 1


def convert_recursive(path, sheetid, outfile, kwargs):
Expand Down

0 comments on commit 55aeec9

Please sign in to comment.