From 99205cdc0f487bdda9ec4b3dbc4b5ea2c0de50b7 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sun, 9 Jul 2023 16:29:40 +0200 Subject: [PATCH] Fixed typo in rnid --- RNS/Utilities/rnid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RNS/Utilities/rnid.py b/RNS/Utilities/rnid.py index 73b299e..b1bff62 100644 --- a/RNS/Utilities/rnid.py +++ b/RNS/Utilities/rnid.py @@ -69,7 +69,7 @@ def main(): parser.add_argument("-q", "--quiet", action="count", default=0, help="decrease verbosity") parser.add_argument("-a", "--announce", metavar="aspects", action="store", default=None, help="announce a destination based on this Identity") - parser.add_argument("-H", "--hash", metavar="aspects", action="store", default=None, help="show destination hash5s for other aspects for this Identity") + parser.add_argument("-H", "--hash", metavar="aspects", action="store", default=None, help="show destination hashes for other aspects for this Identity") parser.add_argument("-e", "--encrypt", metavar="path", action="store", default=None, help="encrypt file") parser.add_argument("-d", "--decrypt", metavar="path", action="store", default=None, help="decrypt file") parser.add_argument("-s", "--sign", metavar="path", action="store", default=None, help="sign file")