Comment 3 for bug 251849

Revision history for this message
Olivier Tilloy (osomon) wrote :

Thanks for the patch.
However, md5 being marked as deprecated, we need a real fallback system so that we use hashlib when available.
That would be something like:

try:
    import hashlib
except ImportError:
    import md5 as hashlib