From 2c54180ddc3417a7087bbc0f1b3b7597e02668c4 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Fri, 1 Jul 2022 13:28:00 +0200 Subject: [PATCH] remove print statement I forgot --- files/routes/search.py | 1 - 1 file changed, 1 deletion(-) diff --git a/files/routes/search.py b/files/routes/search.py index 6b101bdfd..a72dbd264 100644 --- a/files/routes/search.py +++ b/files/routes/search.py @@ -190,7 +190,6 @@ def searchcomments(v): if 'post' in criteria: try: post = int(criteria['post']) except: return {"error": f"Post with id {post} does not exist."} - print(post,flush=True) comments = comments.filter(Comment.parent_submission == post)