From fe53b68714c6abca45915f5a13d3ccbea375ed2d Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 16 Jan 2023 20:40:02 -0500 Subject: [PATCH] Fix silly error message --- vrobbler/apps/scrobbles/utils.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/vrobbler/apps/scrobbles/utils.py b/vrobbler/apps/scrobbles/utils.py index 40c3dcf..f08f3c5 100644 --- a/vrobbler/apps/scrobbles/utils.py +++ b/vrobbler/apps/scrobbles/utils.py @@ -70,9 +70,8 @@ def check_scrobble_for_finish(scrobble: "Scrobble") -> None: completion_percent = scrobble.media_obj.COMPLETION_PERCENT if scrobble.percent_played >= completion_percent: - logger.debug( - f"Beyond completion percent {completion_percent}, finishing scrobble" - ) + logger.debug(f"Completion percent {completion_percent} met, finishing") + scrobble.in_progress = False scrobble.is_paused = False scrobble.played_to_completion = True