summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Adams <mark@markadams.me>2016-01-18 09:21:39 -0600
committerMark Adams <mark@markadams.me>2016-01-18 09:21:39 -0600
commitd363ae9c05a42d7f53384391cb009bc9240ead53 (patch)
tree6c5db4a5e9931a6a8f273f6f0dacecf76e4f4ce2
parentfb47bd8ed1e55b7608ad68ba63ff62bf4e878d12 (diff)
parent53d4cfcc53b2fa99c75a9aba829f7b0930353671 (diff)
downloadpyjwt-d363ae9c05a42d7f53384391cb009bc9240ead53.tar.gz
Merge pull request #192 from gthb/patch-1
Reflect that --no-verify also ignores claims
-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(