From 732985c529e7c2582edb988c8c2f2701d9fee9c3 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sat, 6 Feb 2021 19:02:50 +0100 Subject: [PATCH] add help --- owrxadmin/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owrxadmin/__main__.py b/owrxadmin/__main__.py index 6cbb5b0..c5342a3 100644 --- a/owrxadmin/__main__.py +++ b/owrxadmin/__main__.py @@ -12,7 +12,7 @@ def main(): parser.add_argument("command", help="One of the following commands: adduser, removeuser") parser.add_argument("--noninteractive", action="store_true", help="Don't ask for any user input (useful for automation)") parser.add_argument("--silent", action="store_true", help="Ignore errors (useful for automation)") - parser.add_argument("-u", "--user") + parser.add_argument("-u", "--user", help="User name to perform action upon") args = parser.parse_args() if args.command == "adduser":