From 649fe4bbb551bcc0f3821fe06394f1052b5110e2 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Thu, 22 Sep 2022 21:59:02 -0400 Subject: [PATCH] [47] 2nd mal None Fix --- VERSION | 2 +- modules/library.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 4017b161..0b59df08 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.17.3-develop46 +1.17.3-develop47 diff --git a/modules/library.py b/modules/library.py index b9e1ffc3..62512d89 100644 --- a/modules/library.py +++ b/modules/library.py @@ -117,7 +117,7 @@ class Library(ABC): self.library_operation = True if self.items_library_operation or self.delete_unmanaged_collections or self.delete_collections_with_less \ or self.radarr_remove_by_tag or self.sonarr_remove_by_tag or self.mass_collection_mode \ or self.show_unmanaged or self.metadata_backup or self.update_blank_track_titles else False - self.meta_operations = [getattr(self, o) for o in operations.meta_operations if o] + self.meta_operations = [i for i in [getattr(self, o) for o in operations.meta_operations] if i] if self.asset_directory: logger.info("")