Skip to content

Commit 740c11c

Browse files
committed
Fix typo in login exception message
Signed-off-by: Diego Medaglia <diego.medaglia@hp.com>
1 parent dad6b2a commit 740c11c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/redfish/rest/v1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1043,7 +1043,7 @@ def login(self, username=None, password=None, auth=AuthMethod.SESSION, headers={
10431043
error_str = resp.dict["error"]["message"]
10441044
except:
10451045
pass
1046-
raise SessionCreationError('HTTP {}: Failed to created the session\n{}'.format(resp.status, error_str))
1046+
raise SessionCreationError('HTTP {}: Failed to create the session\n{}'.format(resp.status, error_str))
10471047
else:
10481048
pass
10491049

0 commit comments

Comments
 (0)