Closed
Description
The current version of get_writer:
performs a split on the assumption there is just one dot "." in the pathname e.g. some_path .csv
However, in my application, I am passing in a path that includes a dot '"."
mark/.local/share/file.csv
Therefore I believe that the split on line 50 should; be right-split limited to 1 split:
names = self._native_book.split(".")
. -> names = self._native_book.rsplit(".", 1)
Metadata
Metadata
Assignees
Labels
No labels