summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGunnlaugur Thor Briem <gunnlaugur@gmail.com>2015-11-30 23:33:56 +0000
committerGunnlaugur Thor Briem <gunnlaugur@gmail.com>2015-11-30 23:33:56 +0000
commit53d4cfcc53b2fa99c75a9aba829f7b0930353671 (patch)
tree6c5db4a5e9931a6a8f273f6f0dacecf76e4f4ce2
parentfb47bd8ed1e55b7608ad68ba63ff62bf4e878d12 (diff)
downloadpyjwt-53d4cfcc53b2fa99c75a9aba829f7b0930353671.tar.gz
Reflect that --no-verify also ignores claims
The --no-verify option disables both signature verification and claims verification (e.g. expiry); reflect that in the command-line help.
-rw-r--r--jwt/__main__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jwt/__main__.py b/jwt/__main__.py
index 8b20439..fffe212 100644
--- a/jwt/__main__.py
+++ b/jwt/__main__.py
@@ -40,7 +40,7 @@ The exp key is special and can take an offset to current Unix time.\
action='store_false',
dest='verify',
default=True,
- help='ignore signature verification on decode'
+ help='ignore signature and claims verification on decode'
)
p.add_option(