diff --git a/files/routes/votes.py b/files/routes/votes.py index 9328f57a8..a0ab1b62c 100644 --- a/files/routes/votes.py +++ b/files/routes/votes.py @@ -21,8 +21,6 @@ def admin_vote_info_get(v): if thing.ghost and v.id != OWNER_ID: abort(403) - if not thing.author: - print(thing.id, flush=True) if isinstance(thing, Submission): if thing.author.shadowbanned and not (v and v.admin_level): thing_id = g.db.query(Submission.id).filter_by(upvotes=thing.upvotes, downvotes=thing.downvotes).order_by(Submission.id).first()[0]