diff --git a/resolvers/zine.py b/resolvers/zine.py index c0ed8a0a..19be614f 100644 --- a/resolvers/zine.py +++ b/resolvers/zine.py @@ -381,7 +381,7 @@ async def get_shout_by_slug(_, info, slug): filter(Shout.slug == slug).first() if not shout: - print("shout not exist") + print(f"shout with slug {slug} not exist") return {} #TODO return error field shout.ratings = await ShoutRatingStorage.get_ratings(slug)