From 4c54ceeaf6a0723d3713c714d0f8e0c9e64870a3 Mon Sep 17 00:00:00 2001 From: Tomas Kopecek Date: Wed, 11 Dec 2024 11:34:57 +0100 Subject: [PATCH] remove whitespace --- mock/py/mockbuild/podman.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mock/py/mockbuild/podman.py b/mock/py/mockbuild/podman.py index 754bdf654..c7e84ea04 100644 --- a/mock/py/mockbuild/podman.py +++ b/mock/py/mockbuild/podman.py @@ -136,11 +136,11 @@ def get_layers_digest(self): raise BootstrapError(f"The manifest data of {self.image} " "are not json-formatted.") from exc if 'Config' not in data: - raise BootstrapError(f"Config section of {self.image} is missing.") + raise BootstrapError(f"Config section of {self.image} is missing.") if 'RootFS' not in data: - raise BootstrapError(f"RootFS section of {self.image} is missing.") + raise BootstrapError(f"RootFS section of {self.image} is missing.") if data['RootFS']['Type'] != 'layers': - raise BootstrapError(f"Unexpected format for RootFS in {self.image}.") + raise BootstrapError(f"Unexpected format for RootFS in {self.image}.") # data which should be sufficient to confirm the image data = {