Fix another python3-specific flake.

This commit is contained in:
Jelmer Vernooij 2018-11-03 14:53:54 +00:00
parent 20f2f2a1f5
commit cc07f0b22f
No known key found for this signature in database
GPG Key ID: 579C160D4C9E23E8

View File

@ -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`.")