Remove unneeded keyword argument to player function

Fixes #977
This commit is contained in:
ZyX 2014-08-12 08:11:15 +04:00
parent 1abe0ac194
commit 9e37648acf
1 changed files with 1 additions and 1 deletions

View File

@ -917,7 +917,7 @@ class NowPlayingSegment(Segment):
'elapsed': None,
'total': None,
}
func_stats = player_func(state_symbol=state_symbols, **kwargs)
func_stats = player_func(**kwargs)
if not func_stats:
return None
stats.update(func_stats)