Changed name from connection to startup_connection

pull/8/head
sgoudham 4 years ago
parent 3dc8744024
commit 6b868ac6a0

@ -119,7 +119,7 @@ def get_modlog_for_guild(guildid):
# Before initialising the cache. Store the prefixes from the database within the cache # Before initialising the cache. Store the prefixes from the database within the cache
with db.connection() as conn: with db.startup_connection() as conn:
# Grab the prefix of the server from the database # Grab the prefix of the server from the database
select_query = """SELECT * FROM guilds""" select_query = """SELECT * FROM guilds"""
with closing(conn.cursor()) as cursor: with closing(conn.cursor()) as cursor:
@ -173,7 +173,7 @@ def get_prefix_for_guild(guildid):
# Before initialising the cache. Store the prefixes from the database within the cache # Before initialising the cache. Store the prefixes from the database within the cache
with db.connection() as conn: with db.startup_connection() as conn:
# Grab the prefix of the server from the database # Grab the prefix of the server from the database
select_query = """SELECT * FROM guilds""" select_query = """SELECT * FROM guilds"""
with closing(conn.cursor()) as cursor: with closing(conn.cursor()) as cursor:

Loading…
Cancel
Save