Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
debianpepper 2023-08-25 20:27:18 +09:00
parent e9cd06f23f
commit 5d25c63d29
1 changed files with 4 additions and 3 deletions

View File

@ -266,9 +266,7 @@ def icons_themes():
src_q = collections.deque(src_paths)
des_q = collections.deque(des_paths)
size_q = len(src_q)
def _logpath(path, names):
logging.info('Working in %s' % path)
return [] # nothing will be ignored
for size_length in range(size_q):
source = src_q.popleft()
@ -277,6 +275,9 @@ def icons_themes():
HOME_FOLDER + WPCHROOT + des,
dirs_exist_ok = True, ignore=_logpath
)
def _logpath(path, names):
logging.info('Working in %s' % path)
return [] # nothing will be ignored