Skip to content

Commit 87fb96d

Browse files
authored
Fix grammar in existing-session error message (#3262)
1 parent aa44474 commit 87fb96d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

archinstall/lib/boot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __init__(self, installation: Installer):
1717

1818
def __enter__(self) -> 'Boot':
1919
if (existing_session := storage.get('active_boot', None)) and existing_session.instance != self.instance:
20-
raise KeyError("Archinstall only supports booting up one instance, and a active session is already active and it is not this one.")
20+
raise KeyError("Archinstall only supports booting up one instance and another session is already active.")
2121

2222
if existing_session:
2323
self.session = existing_session.session

0 commit comments

Comments
 (0)