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

moar stuff

This commit is contained in:
Steffo 2017-10-25 11:24:41 +02:00
parent 397bdb4cba
commit 5b8f3bd386
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: C27544372FBB445D
2 changed files with 6 additions and 2 deletions

View file

@ -11,13 +11,13 @@ else:
db.session.add(steam)
try:
dota = db.Dota.get_or_create(steam.steam_id)
except KeyboardInterrupt:
except:
pass
else:
db.session.add(dota)
try:
rl = db.RocketLeague.get_or_create(steam.steam_id)
except KeyboardInterrupt:
except:
pass
else:
db.session.add(rl)

View file

@ -52,4 +52,8 @@ table.rl {
.rl-unranked {
color: grey;
}
th {
cursor: pointer !important;
}