Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "ansys-workbench-core"
version = "0.1.11"
version = "0.1.12"
description = "A python wrapper for Ansys Workbench"
readme = "README.md"
requires-python = ">=3.7,<4.0"
Expand Down
1 change: 1 addition & 0 deletions src/ansys/workbench/core/workbench_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ def set_log_file(self, log_file):
def reset_log_file(self):
if self.__log_file_handler is None:
return
self.__log_file_handler.close()
self._logger.removeHandler(self.__log_file_handler)
self.__log_file_handler = None

Expand Down