From 8fc7cb274f3637da3dbb99c328e161c026222c5e Mon Sep 17 00:00:00 2001 From: glubsy Date: Tue, 30 Jun 2020 04:45:22 +0200 Subject: [PATCH] Revert "Remove superfluous argument" This reverts commit bcb26507fe7f4f0ec555db656c22478494ab5f60. --- core/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/app.py b/core/app.py index 0a9301a2..94055b26 100644 --- a/core/app.py +++ b/core/app.py @@ -259,7 +259,7 @@ class DupeGuru(Broadcaster): def _create_file(self, path): # We add fs.Folder to fileclasses in case the file we're loading contains folder paths. - return fs.get_file(path, self.fileclasses + [se.fs.Folder]) + return fs.get_file(path, self.fileclasses + [se.fs.Folder] + [fs.Folder]) def _get_file(self, str_path): path = Path(str_path)