From 8754a59d9228caacf43bcb1af6ad307da7217b09 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Fri, 30 Jul 2021 10:45:07 -0400 Subject: [PATCH] urlfetcher: Silence xorisso stderr output Signed-off-by: Cole Robinson --- virtinst/install/urlfetcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtinst/install/urlfetcher.py b/virtinst/install/urlfetcher.py index a23b899a2..a6da01a7c 100644 --- a/virtinst/install/urlfetcher.py +++ b/virtinst/install/urlfetcher.py @@ -44,7 +44,7 @@ class _XorrisoReader(): cmd = ["xorriso", "-osirrox", "on", "-indev", self._location, "-extract", url, tmp.name] log.debug("Extracting iso file: %s", cmd) - subprocess.check_output(cmd) + subprocess.check_output(cmd, stderr=subprocess.DEVNULL) return open(tmp.name, "rb").read() def hasFile(self, url):