mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-05-01 01:54:41 +00:00
Fix invalid char range
This commit is contained in:
parent
c704db2da5
commit
f173861b53
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ from pilkit.utils import *
|
|||
import re
|
||||
|
||||
|
||||
bad_memcached_key_chars = re.compile(ur'[\u0000-\u0031\s]+')
|
||||
bad_memcached_key_chars = re.compile(ur'[\u0000-\u001f\s]+')
|
||||
|
||||
|
||||
def get_nonabstract_descendants(model):
|
||||
|
|
|
|||
Loading…
Reference in a new issue