summaryrefslogtreecommitdiff
path: root/rsa/cli.py
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2014-02-22 11:18:25 +0100
committerSybren A. Stüvel <sybren@stuvel.eu>2014-02-22 11:18:25 +0100
commit71eebb190de14e0aa303feeda7bb812fb56ea393 (patch)
tree803d343ba216af7a85a927c0584b0a797dcd06a4 /rsa/cli.py
parent9388f9bd944c4fb39ae286c9965b8dec5ac99239 (diff)
downloadrsa-git-71eebb190de14e0aa303feeda7bb812fb56ea393.tar.gz
Fixed typo in pyrsa-verify help message
Diffstat (limited to 'rsa/cli.py')
-rw-r--r--rsa/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsa/cli.py b/rsa/cli.py
index 2441955..527cc49 100644
--- a/rsa/cli.py
+++ b/rsa/cli.py
@@ -256,7 +256,7 @@ class VerifyOperation(CryptoOperation):
'''Verify a signature.'''
keyname = 'public'
- usage = 'usage: %%prog [options] private_key signature_file'
+ usage = 'usage: %%prog [options] public_key signature_file'
description = ('Verifies a signature, exits with status 0 upon success, '
'prints an error message and exits with status 1 upon error.')
operation = 'verify'