import_playlist: typo missing minutes

This commit is contained in:
bkfox 2017-01-04 18:19:44 +01:00
parent 8bbeb5fe6d
commit b10536efca

View File

@ -69,7 +69,7 @@ class Importer:
try: try:
position = \ position = \
int(line.get('minute') or 0) * 60 + \ int(line.get('minutes') or 0) * 60 + \
int(line.get('seconds') or 0) \ int(line.get('seconds') or 0) \
if in_seconds else index if in_seconds else index