Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AttributeError: module 'openpyxl.cell' has no attribute 'column_index_from_string' #3

Closed
tomkulaga opened this issue Apr 13, 2016 · 0 comments

Comments

@tomkulaga
Copy link

running kifield 1.1.5 with openpyxl 2.4 (installed using easy_install on windows)
i had to change in kifield.py

line 204:
from:
return pyxl.cell.column_index_from_string(cell.column), lbl_match
to:
return pyxl.cell.cell.column_index_from_string(cell.column), lbl_match

and line 612:
from
header_columns = {h.value: pyxl.cell.column_index_from_string(h.column)

to:
header_columns = {h.value: pyxl.cell.cell.column_index_from_string(h.column)

to avoid the error

AttributeError: module 'openpyxl.cell' has no attribute 'column_index_from_string'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant