From 5af3dcb13212d8c8131b7ee30d76a0e8979b6385 Mon Sep 17 00:00:00 2001 From: Untone Date: Tue, 20 Feb 2024 12:58:16 +0300 Subject: [PATCH] typo-fix --- orm/community.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orm/community.py b/orm/community.py index 0b8b6d1c..1d34b50c 100644 --- a/orm/community.py +++ b/orm/community.py @@ -26,4 +26,4 @@ class Community(Base): pic = Column(String, nullable=False, default='') created_at = Column(Integer, nullable=False, default=lambda: int(time.time())) - authors = relationship(Author, secondary='shout_author') + authors = relationship(Author, secondary='community_author')