From e4f66eedc99ac88ae72441871953fa7aa5bed690 Mon Sep 17 00:00:00 2001
From: atlurie <atlurie@uab.edu>
Date: Wed, 18 May 2022 14:23:55 -0500
Subject: [PATCH] Fix typo in the choices for state

---
 account_manager.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/account_manager.py b/account_manager.py
index cd9ebbb..52b7475 100755
--- a/account_manager.py
+++ b/account_manager.py
@@ -14,7 +14,7 @@ parser = argparse.ArgumentParser(description = "Account management driver script
 parser.add_argument(
     "username", help="Username that should be locked/unlocked")
 parser.add_argument(
-    "state", choices=['ok', 'block', 'certification'], help="Choose from states (ok,blocked,certification)")
+    "state", choices=['ok', 'blocked', 'certification'], help="Choose from states (ok,blocked,certification)")
 parser.add_argument(
     "-s", "--service", nargs='+', default='all', choices=['ssh', 'newjobs', 'expiration', 'all'], help="List one or more services to be blocked (default: %(default)s)")
 parser.add_argument(
-- 
GitLab