This commit is contained in:
parent
c17f004c03
commit
437d504de9
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ class Moderation(commands.Cog):
|
|||
return connection
|
||||
except mysql.connector.ProgrammingError as e:
|
||||
logging.fatal("Unable to access the MySQL database!\nError:\n%s", e.msg)
|
||||
raise ConnectionRefusedError(f"Unable to access the MySQL Database!\n{e.msg}")
|
||||
raise ConnectionRefusedError(f"Unable to access the MySQL Database!\n{e.msg}") from e
|
||||
|
||||
async def create_guild_table(self, guild: discord.Guild):
|
||||
database = await self.connect()
|
||||
|
|
Loading…
Reference in a new issue