Properly identify multi-OT NHL games

This commit is contained in:
Erik Johnson 2016-04-22 00:37:43 -05:00
parent 157f0f57c8
commit c930fe8330

View File

@ -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'