Skip to content
Snippets Groups Projects
Commit d0d729a3 authored by Eesaan Atluri's avatar Eesaan Atluri
Browse files

Add missing quotes

parent 5035ac5f
No related branches found
No related tags found
No related merge requests found
...@@ -37,9 +37,9 @@ callback_queue = rc_rmq.bind_queue(exclusive=True) ...@@ -37,9 +37,9 @@ callback_queue = rc_rmq.bind_queue(exclusive=True)
msg = {} msg = {}
if state == 'blocked' or state == 'certification': if state == 'blocked' or state == 'certification':
action = lock action = "lock"
elif state == 'ok': elif state == 'ok':
action = unlock action = "unlock"
else: else:
print("Invalid state provided. Check the help menu.") print("Invalid state provided. Check the help menu.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment