Skip to content

Commit

Permalink
#82 (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
antaenc authored Jan 29, 2025
1 parent 4b16c36 commit 739a37e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning].

## [Unreleased]

## [0.0.8] - 2025-01-29

### Fixed in 0.0.8

- Closing ) was missing

## [0.0.7] - 2025-01-28

### Changed in 0.0.7
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = python-tools
version = 0.0.7
version = 0.0.8
author = senzing
author_email = support@senzing.com
description = Python Tools
Expand Down
3 changes: 1 addition & 2 deletions sz_tools/sz_file_loader
Original file line number Diff line number Diff line change
Expand Up @@ -1106,8 +1106,7 @@ def per_result(settings: dict[str, Any], result: dict[str, Any]) -> None:
if not no_redo:
logger.info("Successful redo records: %s", result["redo_stats"]["success_recs"])
logger.info("Error redo records: %s", result["redo_stats"]["error_recs"])
logger.info(
"Redo elapsed time (s): %s", result["redo_stats"]["elapsed_time"]
logger.info("Redo elapsed time (s): %s", result["redo_stats"]["elapsed_time"])
else:
logger.info("Redo: %s", "Not requested")
logger.info("")
Expand Down

0 comments on commit 739a37e

Please sign in to comment.