From: Septatrix <24257556+Septatrix@users.noreply.github.com> Date: Mon, 12 Feb 2024 23:24:51 +0000 (+0100) Subject: Fix variable reference X-Git-Tag: v21~41^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f22057196d0d2f6507f1077e8347315a3c8c562;p=thirdparty%2Fmkosi.git Fix variable reference --- diff --git a/mkosi/config.py b/mkosi/config.py index 738ec8ace..a6ef9c5a3 100644 --- a/mkosi/config.py +++ b/mkosi/config.py @@ -310,7 +310,7 @@ class Architecture(StrEnum): }.get(s) if not a: - die(f"Architecture {a} is not supported") + die(f"Architecture {s} is not supported") return a