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

View File

@ -226,7 +226,9 @@ def shared_folders():
)
def _logpath(path, names):
logging.info('Working in %s' % path)
return [] # nothing will be ignored
def icons_themes():
"""
@ -270,10 +272,9 @@ def icons_themes():
for size_length in range(size_q):
source = src_q.popleft()
des = des_q.popleft()
logging.info('Working in %s' % source)
shutil.copytree(HOME_FOLDER + source,
HOME_FOLDER + WPCHROOT + des,
dirs_exist_ok = True
dirs_exist_ok = True, ignore=_logpath
)