aeroo / aeroo_docs

Aeroo DOCS - a document conversion service
GNU General Public License v3.0
10 stars 29 forks source link

Error: name '_readFile' is not defined #7

Closed mstuttgart closed 9 years ago

mstuttgart commented 9 years ago

When I run AerooDocs in Odoo v8 in menu configuration->Configure Docs Connection, it return the following error:

"name '_readFile' is not defined"

This error is on line 107 of aeroo_docs_fncs.py file:

data = _readFile(identifier) https://github.com/aeroo/aeroo_docs/blob/master/aeroo_docs_fncs.py#L107

I fixed it changed the code to:

data = self._readFile(identifier)
mstuttgart commented 9 years ago

I will make a fork and submit the changes.

JayVora-SerpentCS commented 9 years ago

Nice catch!

alexis-via commented 9 years ago

This bug is now fixed in master.

mstuttgart commented 9 years ago

Thanks!