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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning].

## [Unreleased]

## [0.0.23] - 2025-06-12

### Fixed in 0.0.23

- Support for all versions of prettytable
- Update for default flags
- Multi_source_summary renamed to entity_source_summary

### Added in 0.0.23

- New search_feature command

## [0.0.22] - 2025-06-06

### Fixed in 0.0.22
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.22
version = 0.0.23
author = senzing
author_email = support@senzing.com
description = Python Tools
Expand Down
4 changes: 3 additions & 1 deletion sz_tools/sz_configtool
Original file line number Diff line number Diff line change
Expand Up @@ -6131,7 +6131,9 @@ class SzCfgShell(cmd.Cmd):
table_object.add_row(tblRow)

table_object.align = "l"
if hasattr(prettytable, "SINGLE_BORDER"):
if hasattr(prettytable, "TableStyle"):
table_object.set_style(prettytable.TableStyle.SINGLE_BORDER)
else:
table_object.set_style(prettytable.SINGLE_BORDER)
table_object.hrules = 1
render_string = table_object.get_string()
Expand Down
Loading
Loading