Skip to content

Commit ae07408

Browse files
Fixed a pylint issue
1 parent 899de75 commit ae07408

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SoftLayer/API.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ def authenticate_with_internal(self, username, password, security_token=None):
712712
raise exceptions.SoftLayerAPIError("Invalid security token: {}".format(security_token))
713713

714714
auth_result = self.call('SoftLayer_User_Employee', 'getEncryptedSessionToken',
715-
username, password, security_token)
715+
username, password, security_token)
716716

717717
self.settings['softlayer']['access_token'] = auth_result['hash']
718718
self.settings['softlayer']['userid'] = str(auth_result['userId'])

0 commit comments

Comments
 (0)