We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f7c01e commit 2b19c95Copy full SHA for 2b19c95
src/nefarious/tasks.py
@@ -309,7 +309,6 @@ def wanted_media_task():
309
for media_type, data in wanted_media_data.items():
310
# process media with the oldest attempt first
311
for media in data['query'].order_by('last_attempt_date'):
312
- logger_background.info(f'{media} -> {media.last_attempt_date}')
313
# media has been released (or it's missing its release date so try anyway) so create a task to try and fetch it
314
if not media.release_date or media.release_date <= today:
315
logger_background.info('Wanted {type}: {media}'.format(type=media_type, media=media))
0 commit comments