I've got a GAE app built with Flask Security (which is awesome BTW). Everything works great, but I'm getting errors like this in my GAE logs:
/.../lib/passlib/crypto/digest.py:414: PasslibRuntimeWarning: inconsistent digest name: 'md5' resolved to <built-in function new>, which reports name as 'MD5'
Although the above message says it is a warning, GAE logs report it as an error.
I'd like to remove these errors from my GAE logs so I can focus on actual errors.
Is there a place where I can change md5
to MD5
to avoid this error?