mirror of
https://github.com/beetbox/beets.git
synced 2026-05-21 23:05:23 -04:00
Merge pull request #474 from kljohann/mpdstats_typo
mpdstats: fix typo/bug
This commit is contained in:
@@ -264,7 +264,7 @@ class MPDStats(object):
|
||||
))
|
||||
return
|
||||
|
||||
duration, played = map(int, status['time'].split(':', 1))
|
||||
played, duration = map(int, status['time'].split(':', 1))
|
||||
remaining = duration - played
|
||||
|
||||
if self.now_playing and self.now_playing['path'] != path:
|
||||
|
||||
Reference in New Issue
Block a user