From 9a0ce533ee83623868d69f973de6fd567f55f3f0 Mon Sep 17 00:00:00 2001 From: croneter Date: Fri, 14 Feb 2020 15:11:20 +0100 Subject: [PATCH] Rename method --- resources/lib/library_sync/full_sync.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/resources/lib/library_sync/full_sync.py b/resources/lib/library_sync/full_sync.py index 3305f188..b2e7e39c 100644 --- a/resources/lib/library_sync/full_sync.py +++ b/resources/lib/library_sync/full_sync.py @@ -78,8 +78,7 @@ class FullSync(common.LibrarySyncMixin, bg.KillableThread): path_ops.copyfile(v.DB_PLEX_PATH, v.DB_PLEX_COPY_PATH) @utils.log_time - def processing_loop_new_and_changed_items(self, section_queue, - processing_queue): + def process_new_and_changed_items(self, section_queue, processing_queue): LOG.debug('Start working') get_metadata_queue = Queue.Queue(maxsize=BACKLOG_QUEUE_SIZE) scanner_thread = FillMetadataQueue(self.repair, @@ -205,8 +204,7 @@ class FullSync(common.LibrarySyncMixin, bg.KillableThread): None, kinds, section_queue, processing_queue, False).start() # Do the heavy lifting - self.processing_loop_new_and_changed_items(section_queue, - processing_queue) + self.process_new_and_changed_items(section_queue, processing_queue) common.update_kodi_library(video=True, music=True) if self.should_cancel() or not self.successful: return