summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/signing.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/core/signing.py b/django/core/signing.py
index 575fef2835..da45ce11b2 100644
--- a/django/core/signing.py
+++ b/django/core/signing.py
@@ -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):