summaryrefslogtreecommitdiff
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
commite8220263a1e398c2751347702cece56468764773 (patch)
tree803d343ba216af7a85a927c0584b0a797dcd06a4
parent4cf0b24390e699b5b36976f68522e9757e414a05 (diff)
downloadrsa-e8220263a1e398c2751347702cece56468764773.tar.gz
Fixed typo in pyrsa-verify help message
-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'