fixed crashing when no arg is given
This commit is contained in:
parent
c09b1e4a30
commit
6835bf5358
1 changed files with 6 additions and 2 deletions
|
@ -17,8 +17,12 @@ def main(args):
|
||||||
bot = interactions.Client(token=token)
|
bot = interactions.Client(token=token)
|
||||||
|
|
||||||
mysql = database.create_connection(host, user, password, db)
|
mysql = database.create_connection(host, user, password, db)
|
||||||
|
try:
|
||||||
if args[0] == "init_database":
|
if args[0] == "init_database":
|
||||||
database.init_test_database(mysql)
|
database.init_test_database(mysql)
|
||||||
|
except:
|
||||||
|
print("Skipping database init...")
|
||||||
|
pass
|
||||||
|
|
||||||
@bot.command(
|
@bot.command(
|
||||||
name="reserve_slot",
|
name="reserve_slot",
|
||||||
|
|
Loading…
Reference in a new issue