From 5175246b89a3d7179341e12a1a5fcb3ef859676a Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Jun 25 2020 07:26:50 +0000 Subject: Fix wrong argument help string Signed-off-by: Nils Philippsen --- diff --git a/roles/git/checks/files/distgit_check_hook.py b/roles/git/checks/files/distgit_check_hook.py index f5d2a2c..a245636 100644 --- a/roles/git/checks/files/distgit_check_hook.py +++ b/roles/git/checks/files/distgit_check_hook.py @@ -26,7 +26,7 @@ def parse_args(): 'target', nargs='?', help='git repo to check') parser.add_argument( '--namespace', default=None, - help='Only check the git hooks, do not fix them') + help="Only operate on a certain namespace, not all of them.") parser.add_argument( '--check', default=False, action="store_true", help='Only check the git hooks, do not fix them')