From 7ef74e5f07888178b714118f05e8d5e860bbe04c Mon Sep 17 00:00:00 2001 From: "Alex J. Champandard" <445208+alexjc@users.noreply.github.com> Date: Wed, 13 Oct 2021 13:35:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=9B=EF=B8=8F=20Rename=20allow=5Fremain?= =?UTF-8?q?ing=20parameter.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index d90db34..0159621 100644 --- a/src/main.py +++ b/src/main.py @@ -55,7 +55,7 @@ def find_all_materials(self): scanner = MaterialScanner( exclude=self.ignore_default + cscan.get("ignore", []), allow_variations=False, - allow_remaining=cscan.get("remaining", []), + allow_remaining=cscan.get("allow_remaining", []), ) library = MaterialLibrary( @@ -67,7 +67,7 @@ def find_all_materials(self): yield filenames, info except FileNotFoundError as exc: - print("ERROR:", path, exc) + print("WARNING:", path, exc) continue