From 32c3d786b352bd9c9465b7a21e939fe556f42a7c Mon Sep 17 00:00:00 2001 From: Akash Chandra Date: Wed, 22 Jan 2025 11:12:14 +0530 Subject: [PATCH] fix: Strip semi colon from resp for asinfo --- lib/view/view.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/view/view.py b/lib/view/view.py index c4a0ebb9..b8d58ed0 100644 --- a/lib/view/view.py +++ b/lib/view/view.py @@ -1357,6 +1357,7 @@ def asinfo(results, line_sep, show_node_name, cluster, **mods): print("\n") else: if isinstance(value, str): + value = value.strip(';') delimiter = util.find_delimiter_in(value) value = value.split(delimiter)