Fix quote generator.

This commit is contained in:
Manuel Amador (Rudd-O) 2023-03-13 15:14:47 +00:00
parent c85b35867d
commit 3b1ae61238
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
%define mybuildnumber %{?build_number}%{?!build_number:1}
Name: ansible-qubes
Version: 0.0.18
Version: 0.0.19
Release: %{mybuildnumber}%{?dist}
Summary: Inter-VM program execution for Qubes OS AppVMs and StandaloneVMs
BuildArch: noarch

View File

@ -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 sys.argv[1:])
if len(text) > 80:
text = text[:77] + "..."
return text