From 537d44b1b937c6857ded0a2dc5703c61c5e980b4 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 29 Jan 2013 06:12:33 -0500 Subject: [PATCH] Fixed #19683 - Added a missing import in signing example. Thanks sunsongxp@ for the report. --- docs/topics/signing.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/topics/signing.txt b/docs/topics/signing.txt index 0758ce8970..68afd6962a 100644 --- a/docs/topics/signing.txt +++ b/docs/topics/signing.txt @@ -58,6 +58,7 @@ You can retrieve the original value using the ``unsign`` method:: If the signature or value have been altered in any way, a ``django.core.signing.BadSignature`` exception will be raised:: + >>> from django.core import signing >>> value += 'm' >>> try: ... original = signer.unsign(value)