From 32ac575178f2b91eb687527ec6123c4bfd7ca05c Mon Sep 17 00:00:00 2001 From: "Nick V. Anokhin" Date: Sat, 18 Jul 2026 01:00:02 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=BB=D1=83=D1=87=D1=88=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20=D0=BE=D1=82=D1=87=D0=B5=D1=82=D0=B0=20=D0=B4?= =?UTF-8?q?=D0=BB=D1=8F=20rack=5Fcoverage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- net/xeaf/rack/core/core_command.py | 4 ++-- net/xeaf/rack/management/commands/rack_coverage.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net/xeaf/rack/core/core_command.py b/net/xeaf/rack/core/core_command.py index 294c347..b6d148d 100644 --- a/net/xeaf/rack/core/core_command.py +++ b/net/xeaf/rack/core/core_command.py @@ -69,6 +69,6 @@ class CoreCommand(BaseCommand): """ p_len = len(str(value)) + len(name) + 2 - points = "." * (length - p_len - 1) + points = "." * (length - p_len) - print(f"{name}: {points} {value}") + print(f"{name} {points} {value}") diff --git a/net/xeaf/rack/management/commands/rack_coverage.py b/net/xeaf/rack/management/commands/rack_coverage.py index 438025e..be79158 100644 --- a/net/xeaf/rack/management/commands/rack_coverage.py +++ b/net/xeaf/rack/management/commands/rack_coverage.py @@ -168,7 +168,7 @@ class Command(CoreCommand): self._report_separator(double=False, last_new_line=False) if total_errors > 0: - self._report_int_value("FAILE! Total number of errors", total_errors) + self._report_int_value("FAIL! Total number of errors", total_errors) self._report_separator(double=False, last_new_line=False) sys.exit(1) else: