Skip to content

Commit 7308701

Browse files
committed
fix issue #12: update the code as the userwarning suggests
1 parent 786e7f6 commit 7308701

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyexcel_xlsx/xlsx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def _cell_value(self, row, column):
6161
"""
6262
actual_row = row + 1
6363
cell_location = "%s%d" % (get_columns(column), actual_row)
64-
return self.native_sheet.cell(cell_location).value
64+
return self.native_sheet[cell_location].value
6565

6666

6767
class XLSXBook(BookReader):

0 commit comments

Comments
 (0)