From 0b9c3396ea3f9f1d544954125e9777970fb229c9 Mon Sep 17 00:00:00 2001 From: Robbt Date: Wed, 19 Dec 2018 16:27:31 -0500 Subject: [PATCH] removed debug line that was causing failures for m4a --- python_apps/airtime-celery/airtime-celery/tasks.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python_apps/airtime-celery/airtime-celery/tasks.py b/python_apps/airtime-celery/airtime-celery/tasks.py index bd8e6b953..3b06e89e5 100644 --- a/python_apps/airtime-celery/airtime-celery/tasks.py +++ b/python_apps/airtime-celery/airtime-celery/tasks.py @@ -154,7 +154,6 @@ def podcast_download(id, url, callback_url, api_key, podcast_name, album_overrid r.raw.decode_content = True shutil.copyfileobj(r.raw, audiofile) metadata_audiofile = mutagen.File(audiofile.name, easy=True) - logger.debug('podcast_download loaded {0}'.format(audiofile.name)) # replace album title as needed metadata_audiofile = podcast_override_album(metadata_audiofile, podcast_name, album_override) metadata_audiofile.save()