diff --git a/i3pystatus/scores/nhl.py b/i3pystatus/scores/nhl.py index aa3406c..013bab4 100644 --- a/i3pystatus/scores/nhl.py +++ b/i3pystatus/scores/nhl.py @@ -271,7 +271,7 @@ class NHL(ScoresBackend): elif ret['status'] == 'final': _update('overtime', 'linescore:currentPeriodOrdinal', - lambda x: x if x in ('OT', 'SO') else '') + lambda x: x if 'OT' in x or x == 'SO' else '') elif ret['status'] != 'in_progress': ret['status'] = 'pregame'