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):