info-fix
All checks were successful
Deploy to core / deploy (push) Successful in 1m42s

This commit is contained in:
2024-01-29 13:02:14 +03:00
parent 774a5ee596
commit 325927739e
5 changed files with 9 additions and 9 deletions

View File

@@ -159,7 +159,7 @@ def topic_follow(follower_id, slug):
topic = session.query(Topic).where(Topic.slug == slug).one()
_following = TopicFollower(topic=topic.id, follower=follower_id)
return True
except Exception:
except Exception as _exc:
return False