From 7cd9982cf92ae5330e70545f7611b13175a6aaab Mon Sep 17 00:00:00 2001 From: bobokun Date: Mon, 19 Jun 2023 10:46:48 -0400 Subject: [PATCH] fixes #333 --- VERSION | 2 +- modules/core/remove_orphaned.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index ad9aba3..78af613 100755 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.0.2-develop1 +4.0.2-develop2 diff --git a/modules/core/remove_orphaned.py b/modules/core/remove_orphaned.py index bbbac2f..601c841 100644 --- a/modules/core/remove_orphaned.py +++ b/modules/core/remove_orphaned.py @@ -31,7 +31,7 @@ class RemoveOrphaned: orphaned_files = [] excluded_orphan_files = [] - root_files = self.executor.submit(util.get_root_files, self.remote_dir, self.root_dir, self.orphaned_dir) + root_files = self.executor.submit(util.get_root_files, self.root_dir, self.remote_dir, self.orphaned_dir) # Get an updated list of torrents logger.print_line("Locating orphan files", self.config.loglevel)