From 9d82143abe87a5b88f1c51a565a890d472645369 Mon Sep 17 00:00:00 2001 From: rembo10 Date: Mon, 14 Feb 2022 08:51:39 +0530 Subject: [PATCH] Remove errant print statements --- headphones/music_encoder.py | 1 - headphones/postprocessor.py | 2 -- headphones/transmission.py | 1 - 3 files changed, 4 deletions(-) diff --git a/headphones/music_encoder.py b/headphones/music_encoder.py index bb9b672e..fd970058 100644 --- a/headphones/music_encoder.py +++ b/headphones/music_encoder.py @@ -30,7 +30,6 @@ from . import getXldProfile def encode(albumPath): - print(albumPath) use_xld = headphones.CONFIG.ENCODER == 'xld' # Return if xld details not found diff --git a/headphones/postprocessor.py b/headphones/postprocessor.py index 875bad80..8f1468ea 100755 --- a/headphones/postprocessor.py +++ b/headphones/postprocessor.py @@ -65,7 +65,6 @@ def checkFolder(): folder_name = torrent_folder_name if folder_name: - print(folder_name) album_path = os.path.join(download_dir, folder_name) logger.debug("Checking if %s exists" % album_path) @@ -80,7 +79,6 @@ def checkFolder(): def verify(albumid, albumpath, Kind=None, forced=False, keep_original_folder=False, single=False): - print(albumpath) myDB = db.DBConnection() release = myDB.action('SELECT * from albums WHERE AlbumID=?', [albumid]).fetchone() tracks = myDB.select('SELECT * from tracks WHERE AlbumID=?', [albumid]) diff --git a/headphones/transmission.py b/headphones/transmission.py index a787344c..18173b9a 100644 --- a/headphones/transmission.py +++ b/headphones/transmission.py @@ -205,5 +205,4 @@ def torrentAction(method, arguments): continue resp_json = response.json() - print(resp_json) return resp_json