From d400ff4f139c05d205066ae07a30ac9156cb8468 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Mon, 27 Jun 2011 09:00:12 +0000 Subject: [PATCH] Fixed #16354 -- Fixed typo in signing docstring. Thanks, charettes. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16471 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/signing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/signing.py b/django/core/signing.py index 06b6c78f1c..7f92d61098 100644 --- a/django/core/signing.py +++ b/django/core/signing.py @@ -6,7 +6,7 @@ The format used looks like this: >>> signing.dumps("hello") 'ImhlbGxvIg:1QaUZC:YIye-ze3TTx7gtSv422nZA4sgmk' -There are two components here, separatad by a ':'. The first component is a +There are two components here, separated by a ':'. The first component is a URLsafe base64 encoded JSON of the object passed to dumps(). The second component is a base64 encoded hmac/SHA1 hash of "$first_component:$secret"