From f012e5ca961553d2d3af4e5f55aa62a9bf45c3b8 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sun, 25 Jul 2021 04:57:21 +0200 Subject: [PATCH] fdfd --- drama/helpers/get.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drama/helpers/get.py b/drama/helpers/get.py index 1413cb8b90..7e816fe4b7 100644 --- a/drama/helpers/get.py +++ b/drama/helpers/get.py @@ -404,7 +404,7 @@ def get_comments(cids, v=None, load_parent=False, **kwargs): Comment.id.in_(cids) ).all() - output=[x[0] for x in query] + output=[x for x in query] output = sorted(output, key=lambda x: cids.index(x.id))