--- a/eric6/Utilities/crypto/py3PBKDF2.py Mon Sep 23 19:10:42 2019 +0200 +++ b/eric6/Utilities/crypto/py3PBKDF2.py Mon Sep 23 19:22:12 2019 +0200 @@ -71,8 +71,8 @@ @param saltSize size of the salt (integer) @return hashed password entry according to PBKDF2 specification (string) """ - digestname, iterations, salt, pwHash = \ - hashPasswordTuple(password, digestMod, iterations, saltSize) + digestname, iterations, salt, pwHash = hashPasswordTuple( + password, digestMod, iterations, saltSize) return Delimiter.join([ digestname, str(iterations),