File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 11Change log
22================================================================================
33
4+ 0.6.7 - unreleased
5+ --------------------------------------------------------------------------------
6+
7+ #. `#115 <https://github.com/pyexcel/pyexcel-io/issues/115 >`_: Pathnames with
8+ "." cause file_name error in get_writer.
9+
4100.6.6 - 31.1.2022
511--------------------------------------------------------------------------------
612
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def __init__(
4747
4848 def get_writer (self ):
4949 if self ._sheet_name != constants .DEFAULT_SHEET_NAME :
50- names = self ._native_book .split ("." )
50+ names = self ._native_book .rsplit ("." , 1 )
5151 file_name = "%s%s%s%s%s.%s" % (
5252 names [0 ],
5353 constants .DEFAULT_MULTI_CSV_SEPARATOR ,
You can’t perform that action at this time.
0 commit comments