From 87fb96d249f5660f5dc2095d33dc078028705fdf Mon Sep 17 00:00:00 2001 From: correctmost <134317971+correctmost@users.noreply.github.com> Date: Sat, 15 Mar 2025 03:59:17 -0400 Subject: [PATCH] Fix grammar in existing-session error message (#3262) --- archinstall/lib/boot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/lib/boot.py b/archinstall/lib/boot.py index 0d47b336..b9deb69d 100644 --- a/archinstall/lib/boot.py +++ b/archinstall/lib/boot.py @@ -17,7 +17,7 @@ class Boot: def __enter__(self) -> 'Boot': if (existing_session := storage.get('active_boot', None)) and existing_session.instance != self.instance: - raise KeyError("Archinstall only supports booting up one instance, and a active session is already active and it is not this one.") + raise KeyError("Archinstall only supports booting up one instance and another session is already active.") if existing_session: self.session = existing_session.session