From 6e919eca3db7e4fee341425333bd3ff22747832b Mon Sep 17 00:00:00 2001 From: NicoHood Date: Tue, 5 Apr 2016 20:58:52 +0200 Subject: [PATCH] Minor typo --- shuffle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shuffle.py b/shuffle.py index 6d5c57b..4e95d43 100755 --- a/shuffle.py +++ b/shuffle.py @@ -579,7 +579,7 @@ class Shuffler(object): for filename in sorted(filenames, key = lambda x: x.lower()): fullPath = os.path.abspath(os.path.join(dirpath, filename)) relPath = fullPath[fullPath.index(self.path)+len(self.path)+1:].lower() - fullPath = os.path.abspath(os.path.join(self.path, relPath)); + fullPath = os.path.abspath(os.path.join(self.path, relPath)) if os.path.splitext(filename)[1].lower() in (".mp3", ".m4a", ".m4b", ".m4p", ".aa", ".wav"): self.tracks.append(fullPath) if os.path.splitext(filename)[1].lower() in (".pls", ".m3u"):