rembo10 / headphones

Automatic music downloader for SABnzbd
GNU General Public License v3.0
3.37k stars 601 forks source link

AttributeError: 'NoneType' object has no attribute 'decode' #2554

Closed blastbeng closed 7 years ago

blastbeng commented 8 years ago

Uncaught exception: Traceback (most recent call last): File "/opt/headphones/headphones/logger.py", line 214, in new_run old_run(_args, _kwargs) File "/usr/lib/python2.7/threading.py", line 505, in run self.__target(_self.__args, _self.__kwargs) File "/opt/headphones/headphones/postprocessor.py", line 1402, in forcePostProcess verify(rgid, folder, keep_original_folder=keep_original_folder) File "/opt/headphones/headphones/postprocessor.py", line 264, in verify keep_original_folder) File "/opt/headphones/headphones/postprocessor.py", line 436, in doPostProcessing albumpaths = moveFiles(albumpath, release, tracks) File "/opt/headphones/headphones/postprocessor.py", line 736, in moveFiles folder = helpers.replace_all(headphones.CONFIG.FOLDER_FORMAT.strip(), values, normalize=True) File "/opt/headphones/headphones/helpers.py", line 207, in replace_all j = unicodedata.normalize('NFC', j.decode(headphones.SYS_ENCODING, 'replace')) AttributeError: 'NoneType' object has no attribute 'decode'

styelz commented 8 years ago

This started to happen to me also after applying Pull Request 2543. All of the albums track names had been renamed but there was no Date in the file name. Usually it is something like (2010) but it's ().

My album format is "$Year/$Artist - $Album" so I guess it's missing the year folder. My file format is "$Track $Artist - $Album ($Year) - $Title"

I was able to get this working by changing helper.py and forcing the $Year on the folder/file format in settings.

@@ -204,7 +204,8 @@
                 else:
                     j = unicodedata.normalize('NFC', j)
             except TypeError:
-                j = unicodedata.normalize('NFC', j.decode(headphones.SYS_ENCODING, 'replace'))
+                if j is not None:
+                    j = unicodedata.normalize('NFC', j.decode(headphones.SYS_ENCODING, 'replace'))
             new_dic[i] = j
         dic = new_dic
     return pathrender.render(text, dic)[0]
andrzejc commented 8 years ago

Please post your error log with https://github.com/rembo10/headphones/pull/2543 https://github.com/rembo10/headphones/pull/2543 applied. I haven’t been able to reproduce this problem when the fix is in effect.

On 26 Mar 2016, at 05:03, styelz notifications@github.com wrote:

This started to happen to me also after applying the this Pull Request 2543 https://github.com/rembo10/headphones/pull/2543. All of the albums track names had been renamed but there was no Date in the file name. Usually it is something like (2010) but it's ().

My album format is "$Year/$Artist - $Album" so I guess it's missing the year folder. My file format is "$Track $Artist - $Album ($Year) - $Title"

— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub https://github.com/rembo10/headphones/issues/2554#issuecomment-201701931

blastbeng commented 8 years ago

I'm on latest developer https://github.com/rembo10/headphones/commit/c1d18a278d29eada3d14eca584e6509482b0382e

I'm still getting this error, my format is "$Artist/$Album [$Year]" My file format is "$Track $Artist - $Album- $Title"

this only happens for some files\folders when i force post-processing but then postprocess stops and doesn't process anything else

andrzejc commented 8 years ago

I believe this issue is solved by https://github.com/rembo10/headphones/pull/2549

styelz commented 8 years ago

Hi andrzejc,

I did a "git pull origin pull/2549/head" and restarted headphones. Still getting the same error. Here are the complete logs with DEBUG enabled from a run on 1 album.

PS. I just noticed that the tracks inside the album folder are for another album "Garbage - Version 2.0" but the folder was named "Garbage - Complete Garbage". Renaming the folder to the correct name fixed the problem.

02-Apr-2016 12:59:42 - INFO    :: CP Server Thread-6 : Verbose toggled, set to True
02-Apr-2016 12:59:42 - DEBUG   :: CP Server Thread-6 : If you read this message, debug logging is available
02-Apr-2016 12:59:49 - INFO    :: CP Server Thread-6 : Web logs cleared
02-Apr-2016 13:00:17 - INFO    :: Thread-13 : Force checking download folder for completed downloads
02-Apr-2016 13:00:17 - DEBUG   :: Thread-13 : Post processing folders: ['/mnt/array1/share/Music/new/test']
02-Apr-2016 13:00:17 - DEBUG   :: Thread-13 : Did not expand subfolder, as it resulted in one folder.
02-Apr-2016 13:00:17 - DEBUG   :: Thread-13 : Expanded post processing folders: ['/mnt/array1/share/Music/new/test/Garbage - Complete Garbage']
02-Apr-2016 13:00:17 - INFO    :: Thread-13 : Found 1 folders to process (0 ignored).
02-Apr-2016 13:00:17 - INFO    :: Thread-13 : Processing: Garbage - Complete Garbage
02-Apr-2016 13:00:17 - DEBUG   :: Thread-13 : Attempting to find album in the snatched table
02-Apr-2016 13:00:17 - DEBUG   :: Thread-13 : Attempting to extract release group from folder name
02-Apr-2016 13:00:17 - DEBUG   :: Thread-13 : Attempting to extract name, album and year from folder name
02-Apr-2016 13:00:17 - INFO    :: Thread-13 : Found a match in the database: Garbage - Complete Garbage. Verifying to make sure it is the correct album
02-Apr-2016 13:00:17 - DEBUG   :: Thread-13 : Verifying metadata...
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata artist: garbage with artist name: garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata album: garbage '99 with album name: complete garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata artist: garbage with artist name: garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata album: version 2.0 with album name: complete garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata artist: garbage with artist name: garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata album: version 2.0 with album name: complete garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata artist: garbage with artist name: garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata album: version 2.0 with album name: complete garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata artist: garbage with artist name: garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata album: version 2.0 with album name: complete garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata artist: garbage with artist name: garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata album: version 2.0 with album name: complete garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata artist: garbage with artist name: garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata album: version 2.0 with album name: complete garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata artist: garbage with artist name: garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata album: version 2.0 with album name: complete garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata artist: garbage with artist name: garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata album: version 2.0 with album name: complete garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata artist: garbage with artist name: garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata album: garbage '99 with album name: complete garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata artist: garbage with artist name: garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata album: version 2.0 with album name: complete garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata artist: garbage with artist name: garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Matching metadata album: version 2.0 with album name: complete garbage
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Metadata check failed. Verifying filenames...
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: driving lesson is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: dog new tricks (the pal mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (red snapper mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: alien sex fiend is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (dreadzone dub mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: girl don't come is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: sleep is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: butterfly collector is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (f.t.f.o.1. mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (danny saber mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: trip my wire is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: subhuman is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: #1 crush is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: vow (torn apart) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   you look so fine
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: driving lesson is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: dog new tricks (the pal mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (red snapper mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: alien sex fiend is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (dreadzone dub mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: girl don't come is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: sleep is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: butterfly collector is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (f.t.f.o.1. mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (danny saber mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: trip my wire is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: subhuman is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: #1 crush is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: vow (torn apart) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/11 garbage   complete garbage ()   (garbage) 11 wicked ways
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: driving lesson is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: dog new tricks (the pal mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (red snapper mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: alien sex fiend is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (dreadzone dub mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: girl don't come is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: sleep is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: butterfly collector is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (f.t.f.o.1. mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (danny saber mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: trip my wire is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: subhuman is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: #1 crush is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: vow (torn apart) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/08 garbage   complete garbage ()   (garbage) 08 the trick is to keep breathing
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: driving lesson is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: dog new tricks (the pal mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (red snapper mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: alien sex fiend is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (dreadzone dub mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: girl don't come is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: sleep is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: butterfly collector is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (f.t.f.o.1. mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (danny saber mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: trip my wire is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: subhuman is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: #1 crush is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: vow (torn apart) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/07 garbage   complete garbage ()   (garbage) 07 push it
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: driving lesson is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: dog new tricks (the pal mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (red snapper mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: alien sex fiend is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (dreadzone dub mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: girl don't come is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: sleep is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: butterfly collector is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (f.t.f.o.1. mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (danny saber mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: trip my wire is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: subhuman is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: #1 crush is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: vow (torn apart) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/04 garbage   complete garbage ()   (garbage) 04 medication
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: driving lesson is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: dog new tricks (the pal mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (red snapper mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: alien sex fiend is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (dreadzone dub mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: girl don't come is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: sleep is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: butterfly collector is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (f.t.f.o.1. mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (danny saber mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: trip my wire is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: subhuman is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: #1 crush is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: vow (torn apart) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/01 garbage   complete garbage ()   (garbage) 01 temptation waits
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: driving lesson is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: dog new tricks (the pal mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (red snapper mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: alien sex fiend is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (dreadzone dub mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: girl don't come is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: sleep is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: butterfly collector is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (f.t.f.o.1. mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (danny saber mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: trip my wire is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: subhuman is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: #1 crush is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: vow (torn apart) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/03 garbage   complete garbage ()   (garbage) 03 when i grow up
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: driving lesson is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: dog new tricks (the pal mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (red snapper mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: alien sex fiend is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (dreadzone dub mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: girl don't come is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: sleep is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: butterfly collector is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (f.t.f.o.1. mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (danny saber mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: trip my wire is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: subhuman is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: #1 crush is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: vow (torn apart) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/06 garbage   complete garbage ()   (garbage) 06 hammering in my hand
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: driving lesson is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: dog new tricks (the pal mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (red snapper mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: alien sex fiend is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (dreadzone dub mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: girl don't come is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: sleep is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: butterfly collector is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (f.t.f.o.1. mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (danny saber mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: trip my wire is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: subhuman is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: #1 crush is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: vow (torn apart) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/02 garbage   complete garbage ()   (garbage) 02 i think i'm paranoid
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: driving lesson is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: dog new tricks (the pal mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (red snapper mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: alien sex fiend is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (dreadzone dub mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: girl don't come is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: sleep is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: butterfly collector is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (f.t.f.o.1. mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer (danny saber mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: trip my wire is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: queer is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: subhuman is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: #1 crush is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: vow (torn apart) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/15 garbage   complete garbage ()   special
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: driving lesson is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   (garbage) 10 sleep together
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: dog new tricks (the pal mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   (garbage) 10 sleep together
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (red snapper mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   (garbage) 10 sleep together
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: alien sex fiend is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   (garbage) 10 sleep together
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: stupid girl (dreadzone dub mix) is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   (garbage) 10 sleep together
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: girl don't come is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   (garbage) 10 sleep together
02-Apr-2016 13:00:18 - DEBUG   :: Thread-13 : Checking if track title: sleep is in file name: /mnt/array1/share/music/new/test/garbage   complete garbage/10 garbage   complete garbage ()   (garbage) 10 sleep together
02-Apr-2016 13:00:18 - INFO    :: Thread-13 : Starting post-processing for: Garbage - Complete Garbage
02-Apr-2016 13:00:19 - INFO    :: Thread-13 : Cleaning up files
02-Apr-2016 13:00:19 - INFO    :: Thread-13 : Renaming NFO
02-Apr-2016 13:00:19 - INFO    :: Thread-13 : Preparing to write metadata to tracks....
02-Apr-2016 13:00:40 - WARNING :: Thread-13 : No accurate album match found for Garbage, Complete Garbage -  not writing metadata
02-Apr-2016 13:00:40 - INFO    :: Thread-13 : Renaming files
02-Apr-2016 13:00:40 - DEBUG   :: Thread-13 : Renaming /mnt/array1/share/Music/new/test/Garbage - Complete Garbage/10 Garbage - Complete Garbage () - You Look So Fine.mp3 ---> 10 Garbage - Complete Garbage () - You Look So Fine.mp3
02-Apr-2016 13:00:40 - DEBUG   :: Thread-13 : Renaming /mnt/array1/share/Music/new/test/Garbage - Complete Garbage/11 Garbage - Complete Garbage () - (Garbage)-11-wicked_ways.mp3 ---> 11 Garbage - Complete Garbage () - (Garbage)-11-wicked_ways.mp3
02-Apr-2016 13:00:40 - DEBUG   :: Thread-13 : Renaming /mnt/array1/share/Music/new/test/Garbage - Complete Garbage/08 Garbage - Complete Garbage () - (Garbage)-08-the_trick_is_to_keep_breathing.mp3 ---> 08 Garbage - Complete Garbage () - (Garbage)-08-the_trick_is_to_keep_breathing.mp3
02-Apr-2016 13:00:40 - DEBUG   :: Thread-13 : Renaming /mnt/array1/share/Music/new/test/Garbage - Complete Garbage/07 Garbage - Complete Garbage () - (Garbage)-07-push_it.mp3 ---> 07 Garbage - Complete Garbage () - (Garbage)-07-push_it.mp3
02-Apr-2016 13:00:40 - DEBUG   :: Thread-13 : Renaming /mnt/array1/share/Music/new/test/Garbage - Complete Garbage/04 Garbage - Complete Garbage () - (Garbage)-04-medication.mp3 ---> 04 Garbage - Complete Garbage () - (Garbage)-04-medication.mp3
02-Apr-2016 13:00:40 - DEBUG   :: Thread-13 : Renaming /mnt/array1/share/Music/new/test/Garbage - Complete Garbage/01 Garbage - Complete Garbage () - (Garbage)-01-temptation_waits.mp3 ---> 01 Garbage - Complete Garbage () - (Garbage)-01-temptation_waits.mp3
02-Apr-2016 13:00:40 - DEBUG   :: Thread-13 : Renaming /mnt/array1/share/Music/new/test/Garbage - Complete Garbage/03 Garbage - Complete Garbage () - (Garbage)-03-when_i_grow_up.mp3 ---> 03 Garbage - Complete Garbage () - (Garbage)-03-when_i_grow_up.mp3
02-Apr-2016 13:00:40 - DEBUG   :: Thread-13 : Renaming /mnt/array1/share/Music/new/test/Garbage - Complete Garbage/06 Garbage - Complete Garbage () - (Garbage)-06-hammering_in_my_hand.mp3 ---> 06 Garbage - Complete Garbage () - (Garbage)-06-hammering_in_my_hand.mp3
02-Apr-2016 13:00:40 - DEBUG   :: Thread-13 : Renaming /mnt/array1/share/Music/new/test/Garbage - Complete Garbage/02 Garbage - Complete Garbage () - (Garbage)-02-i_think_i'm_paranoid.mp3 ---> 02 Garbage - Complete Garbage () - (Garbage)-02-i_think_i'm_paranoid.mp3
02-Apr-2016 13:00:40 - DEBUG   :: Thread-13 : Renaming /mnt/array1/share/Music/new/test/Garbage - Complete Garbage/15 Garbage - Complete Garbage () - Special.mp3 ---> 15 Garbage - Complete Garbage () - Special.mp3
02-Apr-2016 13:00:40 - DEBUG   :: Thread-13 : Renaming /mnt/array1/share/Music/new/test/Garbage - Complete Garbage/10 Garbage - Complete Garbage () - (Garbage)-10-sleep_together.mp3 ---> 10 Garbage - Complete Garbage () - (Garbage)-10-sleep_together.mp3
02-Apr-2016 13:00:40 - DEBUG   :: Thread-13 : Renaming /mnt/array1/share/Music/new/test/Garbage - Complete Garbage/09 Garbage - Complete Garbage () - (Garbage)-09-dumb.mp3 ---> 09 Garbage - Complete Garbage () - (Garbage)-09-dumb.mp3
02-Apr-2016 13:00:40 - INFO    :: Thread-13 : Moving files: /mnt/array1/share/Music/new/test/Garbage - Complete Garbage
02-Apr-2016 13:00:40 - ERROR   :: Thread-13 : Uncaught exception: Traceback (most recent call last):
  File "/mnt/array1/saved/headphones/headphones/logger.py", line 214, in new_run
    old_run(*args, **kwargs)
  File "/usr/lib/python2.7/threading.py", line 505, in run
  File "/mnt/array1/saved/headphones/headphones/postprocessor.py", line 1352, in forcePostProcess
    verify(release['AlbumID'], folder, keep_original_folder=keep_original_folder)
  File "/mnt/array1/saved/headphones/headphones/postprocessor.py", line 264, in verify
    keep_original_folder)
  File "/mnt/array1/saved/headphones/headphones/postprocessor.py", line 436, in doPostProcessing
    albumpaths = moveFiles(albumpath, release, tracks)
  File "/mnt/array1/saved/headphones/headphones/postprocessor.py", line 738, in moveFiles
    folder = helpers.replace_all(headphones.CONFIG.FOLDER_FORMAT.strip(), values, normalize=True)
  File "/mnt/array1/saved/headphones/headphones/helpers.py", line 207, in replace_all
    j = unicodedata.normalize('NFC', j.decode(headphones.SYS_ENCODING, 'replace'))
AttributeError: 'NoneType' object has no attribute 'decode'
styelz commented 8 years ago

Here is the logs from another album.

02-Apr-2016 18:48:16 - INFO    :: Thread-28 : Processing: Daft Punk
02-Apr-2016 18:48:16 - DEBUG   :: Thread-28 : Attempting to find album in the snatched table
02-Apr-2016 18:48:16 - DEBUG   :: Thread-28 : Attempting to extract release group from folder name
02-Apr-2016 18:48:16 - DEBUG   :: Thread-28 : Attempting to extract name, album and year from folder name
02-Apr-2016 18:48:16 - DEBUG   :: Thread-28 : Attempting to extract name, album and year from metadata
02-Apr-2016 18:48:16 - INFO    :: Thread-28 : Querying MusicBrainz for the release group id for: daft punk - homework
02-Apr-2016 18:48:16 - DEBUG   :: Thread-28 : Sleeping 0.375466823578 (interval)
02-Apr-2016 18:48:17 - DEBUG   :: Thread-28 : Sleeping 0.994540929794 (interval)
02-Apr-2016 18:48:20 - DEBUG   :: Thread-28 : Sleeping 0.999939918518 (interval)
02-Apr-2016 18:48:23 - INFO    :: Thread-28 : Now adding/updating artist: Daft Punk
02-Apr-2016 18:48:23 - INFO    :: Thread-28 : ArtistID: 056e4f3e-d505-4dad-8ec1-d04f521cbb56 , ArtistName: Daft Punk
02-Apr-2016 18:48:23 - INFO    :: Thread-28 : Now adding album: Homework
02-Apr-2016 18:48:23 - INFO    :: Thread-28 : Addition complete for: Homework - Daft Punk
02-Apr-2016 18:48:23 - DEBUG   :: Thread-28 : Verifying metadata...
02-Apr-2016 18:48:23 - DEBUG   :: Thread-28 : Matching metadata artist: daft punk with artist name: daft punk
02-Apr-2016 18:48:23 - DEBUG   :: Thread-28 : Matching metadata album: homework with album name: homework
02-Apr-2016 18:48:23 - INFO    :: Thread-28 : Starting post-processing for: Daft Punk - Homework
02-Apr-2016 18:48:23 - INFO    :: Thread-28 : Cleaning up files
02-Apr-2016 18:48:23 - INFO    :: Thread-28 : Renaming NFO
02-Apr-2016 18:48:23 - INFO    :: Thread-28 : Preparing to write metadata to tracks....
02-Apr-2016 18:48:44 - INFO    :: Thread-28 : Beets recommendation for tagging items: Recommendation.strong
02-Apr-2016 18:48:45 - DEBUG   :: Thread-28 : Using ID3v2.4
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/01. Daft Punk - Daftendirekt.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/02. Daft Punk - Wdpk 83.7 fm.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/03. Daft Punk - Revolution 909.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/04. Daft Punk - Da Funk.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/05. Daft Punk - Phænix.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/06. Daft Punk - Fresh.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/07. Daft Punk - Around the World.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/08. Daft Punk - Rollin' & Scratchin'.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/09. Daft Punk - Teachers.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/10. Daft Punk - High Fidelity.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/11. Daft Punk - Rock'n Roll.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/12. Daft Punk - Oh Yeah.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/13. Daft Punk - Burnin'.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/14. Daft Punk - Indo Silver Club.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/15. Daft Punk - Alive.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Successfully applied metadata to: /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/16. Daft Punk - Funk Ad.flac
02-Apr-2016 18:48:45 - INFO    :: Thread-28 : Renaming files
02-Apr-2016 18:48:45 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/01. Daft Punk - Daftendirekt.flac ---> 01 Daft Punk - Homework () - Daftendirekt.flac
02-Apr-2016 18:48:45 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/02. Daft Punk - Wdpk 83.7 fm.flac ---> 02 Daft Punk - Homework () - WDPK 83.7 FM.flac
02-Apr-2016 18:48:45 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/03. Daft Punk - Revolution 909.flac ---> 03 Daft Punk - Homework () - Revolution 909.flac
02-Apr-2016 18:48:45 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/04. Daft Punk - Da Funk.flac ---> 04 Daft Punk - Homework () - Da Funk.flac
02-Apr-2016 18:48:45 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/05. Daft Punk - Phænix.flac ---> 05 Daft Punk - Homework () - Phœnix.flac
02-Apr-2016 18:48:45 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/06. Daft Punk - Fresh.flac ---> 06 Daft Punk - Homework () - Fresh.flac
02-Apr-2016 18:48:45 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/07. Daft Punk - Around the World.flac ---> 07 Daft Punk - Homework () - Around the World.flac
02-Apr-2016 18:48:45 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/08. Daft Punk - Rollin' & Scratchin'.flac ---> 08 Daft Punk - Homework () - Rollin’ & Scratchin’.flac
02-Apr-2016 18:48:45 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/09. Daft Punk - Teachers.flac ---> 09 Daft Punk - Homework () - Teachers.flac
02-Apr-2016 18:48:45 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/10. Daft Punk - High Fidelity.flac ---> 10 Daft Punk - Homework () - High Fidelity.flac
02-Apr-2016 18:48:46 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/11. Daft Punk - Rock'n Roll.flac ---> 11 Daft Punk - Homework () - Rock’n Roll.flac
02-Apr-2016 18:48:46 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/12. Daft Punk - Oh Yeah.flac ---> 12 Daft Punk - Homework () - Oh Yeah.flac
02-Apr-2016 18:48:46 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/13. Daft Punk - Burnin'.flac ---> 13 Daft Punk - Homework () - Burnin’.flac
02-Apr-2016 18:48:46 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/14. Daft Punk - Indo Silver Club.flac ---> 14 Daft Punk - Homework () - Indo Silver Club.flac
02-Apr-2016 18:48:46 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/15. Daft Punk - Alive.flac ---> 15 Daft Punk - Homework () - Alive.flac
02-Apr-2016 18:48:46 - DEBUG   :: Thread-28 : Renaming /mnt/array1/share/Music/Ripped CDs/Daft Punk/Daft Punk - Homework/16. Daft Punk - Funk Ad.flac ---> 16 Daft Punk - Homework () - Funk Ad.flac
02-Apr-2016 18:48:46 - INFO    :: Thread-28 : Moving files: /mnt/array1/share/Music/Ripped CDs/Daft Punk
02-Apr-2016 18:48:46 - ERROR   :: Thread-28 : Uncaught exception: Traceback (most recent call last):
  File "/mnt/array1/saved/headphones/headphones/logger.py", line 214, in new_run
    old_run(*args, **kwargs)
  File "/usr/lib/python2.7/threading.py", line 505, in run
  File "/mnt/array1/saved/headphones/headphones/postprocessor.py", line 1404, in forcePostProcess
    verify(rgid, folder, keep_original_folder=keep_original_folder)
  File "/mnt/array1/saved/headphones/headphones/postprocessor.py", line 245, in verify
    keep_original_folder)
  File "/mnt/array1/saved/headphones/headphones/postprocessor.py", line 436, in doPostProcessing
    albumpaths = moveFiles(albumpath, release, tracks)
  File "/mnt/array1/saved/headphones/headphones/postprocessor.py", line 738, in moveFiles
    folder = helpers.replace_all(headphones.CONFIG.FOLDER_FORMAT.strip(), values, normalize=True)
  File "/mnt/array1/saved/headphones/headphones/helpers.py", line 207, in replace_all
    j = unicodedata.normalize('NFC', j.decode(headphones.SYS_ENCODING, 'replace'))
AttributeError: 'NoneType' object has no attribute 'decode'