From 9a723a1f2fc89b16a64ea1b5dcf34f3b79424f2a Mon Sep 17 00:00:00 2001 From: Guillaume Date: Tue, 29 Oct 2024 18:16:22 +0100 Subject: [PATCH] Returns several useful information about Qcow2 file This script can returns: - the number of allocated clusters in a Qcow file. - the number of newly allocated clusters in a Qcow file compared to a reference one (like the backing file). It can also cleanup a Qcow2 file by removing all data and set all clusters as unallocated. Signed-off-by: Guillaume --- scripts/qcow_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/qcow_util.py b/scripts/qcow_util.py index f4d5d183e..026b70b41 100755 --- a/scripts/qcow_util.py +++ b/scripts/qcow_util.py @@ -421,7 +421,7 @@ def print_help() -> NoReturn: Params: - All command takes a qcow file. Only diff takes a backing file and a qcow. - """ +""" print(help_msg) sys.exit(1)