From f252b8e3229d3d277bf49bc60b2cde029ae45f61 Mon Sep 17 00:00:00 2001 From: Kevin Trocolli Date: Sun, 23 Jun 2024 17:41:22 -0400 Subject: [PATCH] chuni: fix misnamed var in put_net_battle --- titles/chuni/schema/profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/titles/chuni/schema/profile.py b/titles/chuni/schema/profile.py index a8bbb1a..7587197 100644 --- a/titles/chuni/schema/profile.py +++ b/titles/chuni/schema/profile.py @@ -814,7 +814,7 @@ class ChuniProfileData(BaseData): result = await self.execute(conflict) if result: return result.inserted_primary_key['id'] - self.logger.error(f"Failed to put net battle data for user {user_id}") + self.logger.error(f"Failed to put net battle data for user {aime_id}") async def get_net_battle(self, aime_id: int) -> Optional[Row]: result = await self.execute(net_battle.select(net_battle.c.user == aime_id))