diff --git a/docs/topics/signing.txt b/docs/topics/signing.txt index 0758ce89707..68afd6962af 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)