Put all guilds in a list before going thru it

This commit is contained in:
Jeremy Zhang 2018-06-25 07:37:40 +00:00
parent 316e95a103
commit f47d439e33

View File

@ -91,8 +91,11 @@ class Titan(discord.AutoShardedClient):
async def start_cleanup(self):
with self.database.get_session() as session:
guilds = session.query(Guilds).all()
guilds_new = []
count = 0
for guild in guilds:
guilds_new.append(guild)
for guild in guilds_new:
count += 1
self.logger.info("[{}] snowflake-{} name-{}".format(count, guild.guild_id, guild.name))
try: