From 3b41c8df8160197d9fb03b66fad9ef23e82c644d Mon Sep 17 00:00:00 2001 From: tcely Date: Mon, 23 Dec 2024 16:55:26 -0500 Subject: [PATCH] Remove duplicated ' to:' --- tubesync/sync/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubesync/sync/tasks.py b/tubesync/sync/tasks.py index 37983932..10350562 100644 --- a/tubesync/sync/tasks.py +++ b/tubesync/sync/tasks.py @@ -430,7 +430,7 @@ def download_media(media_id): copyfile(media.thumb.path, media.thumbpath) # If selected, write an NFO file if media.source.write_nfo: - log.info(f'Writing media NFO file to: to: {media.nfopath}') + log.info(f'Writing media NFO file to: {media.nfopath}') write_text_file(media.nfopath, media.nfoxml) # Schedule a task to update media servers for mediaserver in MediaServer.objects.all():