From 5a00e9769c55d19386d40c5ffb34367ca6423181 Mon Sep 17 00:00:00 2001 From: rembo10 Date: Tue, 3 Jul 2012 14:04:34 +0530 Subject: [PATCH] Removed log message if the destination file doesn't exist --- headphones/postprocessor.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/headphones/postprocessor.py b/headphones/postprocessor.py index 13af012a..70b19288 100644 --- a/headphones/postprocessor.py +++ b/headphones/postprocessor.py @@ -418,8 +418,6 @@ def moveFiles(albumpath, release, tracks): except Exception, e: logger.warn('Error renaming %s: %s' % (files, e)) break - else: - logger.info('Destination file doesnt exist: %s' % files) try: shutil.move(os.path.join(r, files), os.path.join(destination_path, files))