Fix typo in error message

Change-Id: I90eb675f253b7499600a333de7e962468e8c69f9
This commit is contained in:
Jarrod Johnson 2023-10-13 10:19:41 -04:00
parent 3c5b03c35f
commit b67912283c
1 changed files with 1 additions and 1 deletions

View File

@ -586,7 +586,7 @@ class Session(object):
while self.logonwaiters:
waiter = self.logonwaiters.pop()
try:
waiter({'error': 'Session failed to initalize'})
waiter({'error': 'Session failed to initialize'})
except Exception:
pass