Skip to content

Commit

Permalink
Remove errant print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
rembo10 committed Feb 14, 2022
1 parent eaf2db6 commit 9d82143
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion headphones/music_encoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@


def encode(albumPath):
print(albumPath)
use_xld = headphones.CONFIG.ENCODER == 'xld'

# Return if xld details not found
Expand Down
2 changes: 0 additions & 2 deletions headphones/postprocessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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])
Expand Down
1 change: 0 additions & 1 deletion headphones/transmission.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,5 +205,4 @@ def torrentAction(method, arguments):
continue

resp_json = response.json()
print(resp_json)
return resp_json

0 comments on commit 9d82143

Please sign in to comment.