fddf
This commit is contained in:
parent
2942778bd4
commit
8a9b7d505e
1 changed files with 3 additions and 3 deletions
|
@ -163,11 +163,11 @@ def get_comment(i, v=None, graceful=False, **kwargs):
|
||||||
|
|
||||||
if v:
|
if v:
|
||||||
|
|
||||||
items = g.db.query(Comment)
|
comment=g.db.query(Comment).filter(Comment.id == i).first()
|
||||||
|
|
||||||
comment=items.filter(Comment.id == i).first()
|
|
||||||
|
|
||||||
|
print("sex")
|
||||||
if not comment and not graceful: abort(404)
|
if not comment and not graceful: abort(404)
|
||||||
|
print("fuck")
|
||||||
|
|
||||||
block = g.db.query(UserBlock).filter(
|
block = g.db.query(UserBlock).filter(
|
||||||
or_(
|
or_(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue