You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a non-existent file is opened e..g
pyexcel_ods.read_data('/tmp/odf/test.os') # deliberate typo in name, works if no type
The error message is:
NoSupportingPluginFound: No suitable library found for os
My simple fix is, just before
reader = READERS.get_a_plugin(file_type, library)
in /pyexcel_io/io.py, insert
import os # should be in header
if not os.path.exists(file_name):
raise IOError(file_name + ' not found')
I have only tested this with ods (spreadsheet) files.
see next comment
The text was updated successfully, but these errors were encountered: