diff --git a/docs/topics/signing.txt b/docs/topics/signing.txt index 07de97e2f3..671f2472d5 100644 --- a/docs/topics/signing.txt +++ b/docs/topics/signing.txt @@ -60,6 +60,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)