From d0d729a3dff17a657bfa86e97b330a095b39cb46 Mon Sep 17 00:00:00 2001 From: atlurie <atlurie@uab.edu> Date: Thu, 7 Apr 2022 23:18:49 -0500 Subject: [PATCH] Add missing quotes --- account_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/account_manager.py b/account_manager.py index 5f619a3..5b1f91c 100755 --- a/account_manager.py +++ b/account_manager.py @@ -37,9 +37,9 @@ callback_queue = rc_rmq.bind_queue(exclusive=True) msg = {} if state == 'blocked' or state == 'certification': - action = lock + action = "lock" elif state == 'ok': - action = unlock + action = "unlock" else: print("Invalid state provided. Check the help menu.") -- GitLab