diff --git a/newuser.py b/newuser.py index 6c0d1589..a6c292b5 100644 --- a/newuser.py +++ b/newuser.py @@ -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) diff --git a/static/royal.css b/static/royal.css index f1db1ed2..572d82a1 100644 --- a/static/royal.css +++ b/static/royal.css @@ -52,4 +52,8 @@ table.rl { .rl-unranked { color: grey; +} + +th { + cursor: pointer !important; } \ No newline at end of file