Skip to content

Commit 9e9ed77

Browse files
committed
propagate the lml interface changes
1 parent 291fbb8 commit 9e9ed77

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,5 +343,5 @@ Support the project
343343
================================================================================
344344

345345
If your company has embedded pyexcel and its components into a revenue generating
346-
product, please `support me on patreon <https://www.patreon.com/pyexcel>`_ to
346+
product, please `support me on patreon <https://www.patreon.com/bePatron?u=5537627>`_ to
347347
maintain the project and develop it further.

pyexcel_xls/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
# flake8: noqa
1111
# this line has to be place above all else
1212
# because of dynamic import
13-
from pyexcel_io.plugins import IORegistry
13+
from pyexcel_io.plugins import IOPluginInfoChain
1414
from pyexcel_io.io import get_data as read_data, isstream, store_data as write_data
1515

1616
__FILE_TYPE__ = 'xls'
17-
IORegistry(__name__).add_a_reader(
18-
submodule='xlsr.XLSBook',
17+
IOPluginInfoChain(__name__).add_a_reader(
18+
relative_plugin_class_path='xlsr.XLSBook',
1919
file_types=[__FILE_TYPE__, 'xlsx', 'xlsm'],
2020
stream_type='binary'
2121
).add_a_writer(
22-
submodule='xlsw.XLSWriter',
22+
relative_plugin_class_path='xlsw.XLSWriter',
2323
file_types=[__FILE_TYPE__],
2424
stream_type='binary'
2525
)

0 commit comments

Comments
 (0)