Improved db migrations, & fixes

This commit is contained in:
Collin Rapp
2021-02-15 21:25:58 -08:00
parent 6ccee0569c
commit 284fff7e36
4 changed files with 227 additions and 195 deletions

View File

@@ -1,4 +1,7 @@
"""Entry point used for either runnning or freezing the bot."""
import pointsbot
pointsbot.run()
try:
pointsbot.run()
except KeyboardInterrupt as e:
print('\nShutting down...\n')