Skip to content

Commit

Permalink
Fix Queue endpoint error from merge
Browse files Browse the repository at this point in the history
  • Loading branch information
campb303 committed Feb 22, 2021
1 parent f52daa5 commit 748a49c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def get(self, queues: str) -> tuple:
tuple: Queues as JSON and HTTP response code.
"""
headersOnly = False if request.args.get("headersOnly") == "False" else True
queues_requested = queue.split("+")
queues_requested = queues.split("+")

queue_list = []
for queue in queues_requested:
Expand Down

0 comments on commit 748a49c

Please sign in to comment.