Skip to content

Commit

Permalink
release: qase-python-commons 3.0.2b9
Browse files Browse the repository at this point in the history
Fixed the issues on Windows OS:
[Errno 22] Invalid argument: `.\\logs\\_20240101_00:00:00`
  • Loading branch information
gibiw committed May 22, 2024
1 parent 61c3313 commit ea98700
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qase-python-commons/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "qase-python-commons"
version = "3.0.2b8"
version = "3.0.2b9"
description = "A library for Qase TestOps and Qase Report"
readme = "README.md"
authors = [{name = "Qase Team", email = "[email protected]"}]
Expand Down
2 changes: 1 addition & 1 deletion qase-python-commons/src/qase/commons/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ def log_debug(self, message: str):
self.log(message, 'debug')

@staticmethod
def _get_timestamp(format: str = "%Y%m%d_%H:%M:%S"):
def _get_timestamp(format: str = "%Y%m%d_%H_%M_%S"):
now = datetime.datetime.now()
return now.strftime(format)

0 comments on commit ea98700

Please sign in to comment.