storage: fix bug giving str to timestamp_

This commit is contained in:
Luna Mendes 2018-11-20 18:54:42 -03:00
parent ee29668468
commit e6cda1fa6d
1 changed files with 1 additions and 1 deletions

View File

@ -483,7 +483,7 @@ class Storage:
WHERE guild_id = $1 AND user_id = $2
""", guild_id, user_id)
res['joined_at'] = timestamp_(joined_at.isoformat())
res['joined_at'] = timestamp_(joined_at)
members = await self.get_member_data(guild_id)
channels = await self.get_channel_data(guild_id)