From 06ee770184b9cc8630fc85f797aa8669f3318ff5 Mon Sep 17 00:00:00 2001 From: rembo10 Date: Mon, 28 Apr 2014 20:08:22 -0700 Subject: [PATCH] Bug fix for postprocessor fix --- headphones/postprocessor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/postprocessor.py b/headphones/postprocessor.py index b692f847..8bec9830 100644 --- a/headphones/postprocessor.py +++ b/headphones/postprocessor.py @@ -50,7 +50,7 @@ def checkFolder(): logger.info("Checking if %s exists" % album_path) if os.path.exists(album_path): logger.info('Found "' + album['FolderName'] + '" in ' + album['Kind'] + ' download folder. Verifying....') - verify(album['AlbumID'], torrent_album_path, 'torrent') + verify(album['AlbumID'], album_path, album['Kind']) else: logger.info("No folder name found for " + album['Title'])