1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Sentry integration

This commit is contained in:
Steffo 2016-08-10 20:25:03 +02:00
parent 9a45b4a54b
commit 0b8a392646
2 changed files with 413 additions and 406 deletions

1
.gitignore vendored
View file

@ -15,3 +15,4 @@ Lib/*
Scripts/*
tcl/*
pip-selfcheck.json
sentry.txt

6
bot.py
View file

@ -8,6 +8,8 @@ import random
import osu
import lol
import discord
from raven import Client
client = Client(filemanager.readfile("sentry.txt"))
# Elenco di username dei membri della RYG
royalgames = json.loads(filemanager.readfile("db.json"))
@ -22,6 +24,8 @@ adventurecomplete = False
# Ciclo principale del bot
print("Bot avviato!")
while True:
# noinspection PyBroadException,PyBroadException
try:
# Guarda il comando ricevuto.
msg = telegram.getupdates()
# Se il messaggio non è una notifica di servizio...
@ -460,3 +464,5 @@ while True:
raise Exception("Ho appena fatto crashare tutto apposta. Sono un genio.")
else:
print("@" + username + " bloccato.")
except Exception:
client.captureException()