From 5111c32854e4ad28e87e29864ecd9217ed1d32ad Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Thu, 13 Oct 2022 23:10:38 +0200 Subject: [PATCH] Fixed help text --- RNS/Utilities/rnx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RNS/Utilities/rnx.py b/RNS/Utilities/rnx.py index f931473..77e823d 100644 --- a/RNS/Utilities/rnx.py +++ b/RNS/Utilities/rnx.py @@ -538,7 +538,7 @@ def main(): parser.add_argument("-x", '--interactive', action='store_true', default=False, help="enter interactive mode") parser.add_argument("-b", '--no-announce', action='store_true', default=False, help="don't announce at program start") parser.add_argument('-a', metavar="allowed_hash", dest="allowed", action='append', help="accept from this identity", type=str) - parser.add_argument('-n', '--noauth', action='store_true', default=False, help="accept files from anyone") + parser.add_argument('-n', '--noauth', action='store_true', default=False, help="accept commands from anyone") parser.add_argument('-N', '--noid', action='store_true', default=False, help="don't identify to listener") parser.add_argument("-d", '--detailed', action='store_true', default=False, help="show detailed result output") parser.add_argument("-m", action='store_true', dest="mirror", default=False, help="mirror exit code of remote command")