fix: remove unnecessary newlining

main
Marshall Hallenbeck 2023-10-21 18:59:33 -04:00
parent a68265bb13
commit 92ddea1ffb
1 changed files with 1 additions and 2 deletions

View File

@ -156,8 +156,7 @@ class LsaLookupNames:
# Authenticate if specified
if self.authn and hasattr(rpc_transport, "set_credentials"):
# This method exists only for selected protocol sequences.
rpc_transport.set_credentials(self.username, self.password, self.domain, self.lmhash, self.nthash,
self.aesKey)
rpc_transport.set_credentials(self.username, self.password, self.domain, self.lmhash, self.nthash, self.aesKey)
if self.doKerberos:
rpc_transport.set_kerberos(self.doKerberos, kdcHost=self.dcHost)