We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aef2f03 commit eb762e5Copy full SHA for eb762e5
project/thscoreboard/replays/templatetags/replay_filters.py
@@ -13,5 +13,5 @@ def convert_th13_trance(value) -> str:
13
gauge_units = int(value) // 200
14
gauge_progress = int(value) % 200
15
return str(gauge_units) + " + " + str(gauge_progress) + "/200"
16
- except:
+ except (ValueError, TypeError):
17
return "invalid trance value"
0 commit comments