From ec4c1d6717da7a9d09d5b3ce84cccac819bb592c Mon Sep 17 00:00:00 2001 From: Srinivas Reddy Thatiparthy Date: Fri, 20 Jan 2017 18:08:17 +0530 Subject: [PATCH] Removed u'' prefx in django/core/signing.py comment. --- 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 b6bb7492471..7d73611817b 100644 --- a/django/core/signing.py +++ b/django/core/signing.py @@ -14,7 +14,7 @@ signing.loads(s) checks the signature and returns the deserialized object. If the signature fails, a BadSignature exception is raised. >>> signing.loads("ImhlbGxvIg:1QaUZC:YIye-ze3TTx7gtSv422nZA4sgmk") -u'hello' +'hello' >>> signing.loads("ImhlbGxvIg:1QaUZC:YIye-ze3TTx7gtSv422nZA4sgmk-modified") ... BadSignature: Signature failed: ImhlbGxvIg:1QaUZC:YIye-ze3TTx7gtSv422nZA4sgmk-modified