We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1caf894 commit 7a6ca6eCopy full SHA for 7a6ca6e
pyexcel_io/writers/csv_sheet.py
@@ -47,7 +47,7 @@ def __init__(
47
48
def get_writer(self):
49
if self._sheet_name != constants.DEFAULT_SHEET_NAME:
50
- names = self._native_book.split(".")
+ names = self._native_book.rsplit(".", 1)
51
file_name = "%s%s%s%s%s.%s" % (
52
names[0],
53
constants.DEFAULT_MULTI_CSV_SEPARATOR,
0 commit comments