Comment 4 for bug 337384

Revision history for this message
Marc Tardif (cr3) wrote :

This has been fixed in version 0.7 of checkbox currently in jaunty:

def safe_md5sum():
    try:
        import hashlib
        digest = hashlib.md5()
    except ImportError:
        # for Python << 2.5
        import md5
        digest = md5.new()

    return digest