Compare commits

..

2 Commits

Author SHA1 Message Date
5e0b0080d9 Bump version to 0.9.87 2023-12-27 13:21:28 -05:00
572596c575 Fix missing f-string placeholder 2023-12-27 13:21:20 -05:00
2 changed files with 2 additions and 2 deletions

2
debian/changelog vendored
View File

@ -6,7 +6,7 @@ pvc (0.9.87-0) unstable; urgency=high
* [CLI Client] Fixes a bug listing connections if no default is specified.
* [All Daemons] Simplifies debug logging conditionals by moving into the Logger instance itself.
-- Joshua M. Boniface <joshua@boniface.me> Wed, 27 Dec 2023 13:03:14 -0500
-- Joshua M. Boniface <joshua@boniface.me> Wed, 27 Dec 2023 13:21:28 -0500
pvc (0.9.86-0) unstable; urgency=high

View File

@ -695,7 +695,7 @@ class MonitoringInstance(object):
health_text = f"{health_colour}{self.this_node.health}%{self.logger.fmt_end} node health"
result_text.append(health_text)
else:
health_text = "{self.logger.fmt_blue}N/A{self.logger.fmt_end} node health"
health_text = f"{self.logger.fmt_blue}N/A{self.logger.fmt_end} node health"
result_text.append(health_text)
self.logger.out(