Refs #23919 -- Removed obsolete comment in signing.py

This commit is contained in:
Claude Paroz 2020-01-08 17:48:53 +01:00
parent 07f6ff09e4
commit 6686238cdc
1 changed files with 0 additions and 1 deletions

View File

@ -145,7 +145,6 @@ def loads(s, key=None, salt='django.core.signing', serializer=JSONSerializer, ma
class Signer:
def __init__(self, key=None, sep=':', salt=None):
# Use of native strings in all versions of Python
self.key = key or settings.SECRET_KEY
self.sep = sep
if _SEP_UNSAFE.match(self.sep):