2
0
mirror of https://opendev.org/x/pyghmi synced 2026-05-18 04:07:19 +00:00

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