From 84b7c6b0eb2bc78d4eaceab5a5649c6361078014 Mon Sep 17 00:00:00 2001 From: "Manuel Amador (Rudd-O)" Date: Mon, 13 Mar 2023 15:25:45 +0000 Subject: [PATCH] Fix bug in ellipsized. --- ansible-qubes.spec | 2 +- bin/bombshell-client | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible-qubes.spec b/ansible-qubes.spec index b173e30..be4973f 100644 --- a/ansible-qubes.spec +++ b/ansible-qubes.spec @@ -3,7 +3,7 @@ %define mybuildnumber %{?build_number}%{?!build_number:1} Name: ansible-qubes -Version: 0.0.19 +Version: 0.0.20 Release: %{mybuildnumber}%{?dist} Summary: Inter-VM program execution for Qubes OS AppVMs and StandaloneVMs BuildArch: noarch diff --git a/bin/bombshell-client b/bin/bombshell-client index 689431e..1a1d094 100755 --- a/bin/bombshell-client +++ b/bin/bombshell-client @@ -322,7 +322,7 @@ def quotedargs(): def quotedargs_ellipsized(cmdlist): - text = " ".join(quote(x) for x in sys.argv[1:]) + text = " ".join(quote(x) for x in cmdlist) if len(text) > 80: text = text[:77] + "..." return text