Fix grammar in existing-session error message (#3262)

This commit is contained in:
correctmost 2025-03-15 03:59:17 -04:00 committed by GitHub
parent aa444748b9
commit 87fb96d249
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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