Update compressor/cache.py

DeprecationWarning: django.utils.hashcompat is deprecated; use hashlib instead

https://github.com/django/django/blob/master/django/utils/hashcompat.py
This commit is contained in:
Thomas Schreiber
2012-12-11 23:02:07 +01:00
parent 5711c2ca8d
commit b433670f05

View File

@@ -1,3 +1,4 @@
import hashlib
import os
import socket
import time
@@ -7,7 +8,6 @@ from django.core.files.base import ContentFile
from django.utils import simplejson
from django.utils.encoding import smart_str
from django.utils.functional import SimpleLazyObject
from django.utils.hashcompat import md5_constructor
from django.utils.importlib import import_module
from compressor.conf import settings
@@ -18,7 +18,7 @@ _cachekey_func = None
def get_hexdigest(plaintext, length=None):
digest = md5_constructor(smart_str(plaintext)).hexdigest()
digest = hashlib.md5(smart_str(plaintext)).hexdigest()
if length:
return digest[:length]
return digest