Fix another python3-specific flake.

master
Jelmer Vernooij 6 years ago
parent 20f2f2a1f5
commit cc07f0b22f
No known key found for this signature in database
GPG Key ID: 579C160D4C9E23E8

@ -15,7 +15,7 @@ except ImportError:
def pbkdf2(val, salt, iterations, dklen, func):
return _pbkdf2(val, salt, iterations, dklen, ("hmac-" + func).encode("utf-8"))
except ImportError as ex:
except ImportError:
raise ImportError("No PBKDF2 implementation found. Either upgrade "
"to `werkzeug` 0.9 or install `passlib`.")

Loading…
Cancel
Save