From b10536efcacbc99af8f225a3be27c2fad7d78923 Mon Sep 17 00:00:00 2001 From: bkfox Date: Wed, 4 Jan 2017 18:19:44 +0100 Subject: [PATCH] import_playlist: typo missing minutes --- aircox/management/commands/import_playlist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aircox/management/commands/import_playlist.py b/aircox/management/commands/import_playlist.py index 4cf7f03..3ca21fd 100755 --- a/aircox/management/commands/import_playlist.py +++ b/aircox/management/commands/import_playlist.py @@ -69,7 +69,7 @@ class Importer: try: position = \ - int(line.get('minute') or 0) * 60 + \ + int(line.get('minutes') or 0) * 60 + \ int(line.get('seconds') or 0) \ if in_seconds else index