diff options
| author | Claude Paroz <claude@2xlibre.net> | 2020-01-08 17:48:53 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2020-01-08 17:50:29 +0100 |
| commit | 6686238cdc5c826ca5aab39d771798ff98e90ae8 (patch) | |
| tree | f9fb5ba1d2f0d0606d7185e2570e2a19e9a6b1d2 | |
| parent | 07f6ff09e431cec48be5e46d843a4bbf10bfeac6 (diff) | |
Refs #23919 -- Removed obsolete comment in signing.py
| -rw-r--r-- | django/core/signing.py | 1 |
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): |
