From f107f350c641a1798ec5524e80078fb7ebd3fd40 Mon Sep 17 00:00:00 2001 From: MelReyCG Date: Thu, 17 Oct 2024 15:36:40 +0200 Subject: [PATCH] removed potencially disturbing character --- geos-ats/src/geos/ats/helpers/restart_check.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geos-ats/src/geos/ats/helpers/restart_check.py b/geos-ats/src/geos/ats/helpers/restart_check.py index e7c164a..8f2dcf5 100644 --- a/geos-ats/src/geos/ats/helpers/restart_check.py +++ b/geos-ats/src/geos/ats/helpers/restart_check.py @@ -460,8 +460,8 @@ def limited_display(n,string): message = "Differing valid characters" message += " (substrings reordering detected):\n" if reordering_detected else ":\n" - message += f"- {limited_display( maxDisplay, arr_chars_display )}\n" - message += f"- {limited_display( maxDisplay, base_arr_chars_display )}\n" + message += f" {limited_display( maxDisplay, arr_chars_display )}\n" + message += f" {limited_display( maxDisplay, base_arr_chars_display )}\n" message += " " + "".join( ["^" if i in differing_indices else " " for i in range( min( maxDisplay, min_length ) ) ] ) + "\n" return message