splitlog 2.1.4__tar.gz → 2.1.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {splitlog-2.1.4 → splitlog-2.1.5}/PKG-INFO +1 -1
- {splitlog-2.1.4 → splitlog-2.1.5}/pyproject.toml +1 -1
- {splitlog-2.1.4 → splitlog-2.1.5}/splitlog/__init__.py +2 -3
- {splitlog-2.1.4 → splitlog-2.1.5}/LICENSE +0 -0
- {splitlog-2.1.4 → splitlog-2.1.5}/README.md +0 -0
- {splitlog-2.1.4 → splitlog-2.1.5}/splitlog/__main__.py +0 -0
- {splitlog-2.1.4 → splitlog-2.1.5}/splitlog/outputfolder.py +0 -0
|
@@ -263,9 +263,8 @@ class _Splitter(object):
|
|
|
263
263
|
assert self.filename, "filename must be present"
|
|
264
264
|
log_path = container_dir / self.filename
|
|
265
265
|
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
logger.debug("Created empty log file %s", log_path)
|
|
266
|
+
with self.output_folder.create(log_path) as outfile:
|
|
267
|
+
logger.debug("Created empty log file %s", log_path)
|
|
269
268
|
|
|
270
269
|
def _copy(self: "_Splitter") -> None:
|
|
271
270
|
container_dir = self._create_hierarchy()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|