Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

podman: typofix in error-message #1525

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mock/py/mockbuild/podman.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def _podman_query(cmd):
image_arch = _podman_query(image_check_cmd)
if system_arch != image_arch:
logger.error("Image architecture %s doesn't match system arch %s",
system_arch, image_arch)
image_arch, system_arch)
return False
except subprocess.SubprocessError as exc:
logger.error("Subprocess failed: %s", exc)
Expand Down
3 changes: 3 additions & 0 deletions releng/release-notes-next/podman-arch-check.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
The error message in podman_check_native_image_architecture() method has been
fixed to correctly what is the expected (system) architecture, and what is the
image architecture.
Loading