From 6b5618d1dfc131f5c94a1497ece6aeb122137159 Mon Sep 17 00:00:00 2001 From: Christian Zangl Date: Mon, 14 Sep 2020 16:25:23 +0200 Subject: [PATCH] show ignored dirs (verbose) --- chkbit/indexthread.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chkbit/indexthread.py b/chkbit/indexthread.py index 92f8d8b..93c66c6 100644 --- a/chkbit/indexthread.py +++ b/chkbit/indexthread.py @@ -52,6 +52,8 @@ class IndexThread: for name in dirs: if not e.should_ignore(name): self.todo_queue.put(os.path.join(parent, name)) + else: + self._log(Stat.SKIP, name + "/") def run(self): while True: