Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
debianpepper 2023-08-25 20:42:09 +09:00
parent 5cfff71629
commit a3f8072738
2 changed files with 4 additions and 11 deletions

View File

@ -16,7 +16,6 @@ import paths
import inflate_bubble
import finish_cleanup
import infra
import logging
# Set the home path used regardless the user logged in

View File

@ -9,11 +9,9 @@
"""
import os
import sys
from io import StringIO
import collections
from pathlib import Path
import shutil
import logging
import paths
@ -226,10 +224,6 @@ def shared_folders():
)
def _logpath(path, names):
logging.info('Working in %s' % path)
return [] # nothing will be ignored
def icons_themes():
"""
This function will get the icons and themse that are
@ -271,14 +265,14 @@ def icons_themes():
for size_length in range(size_q):
source = src_q.popleft()
des = des_q.popleft()
des = des_q.popleft()
print("Folders to be copied -- " + source)
shutil.copytree(HOME_FOLDER + source,
HOME_FOLDER + WPCHROOT + des,
dirs_exist_ok = True, ignore=_logpath
)
print("Folders have been copied -- " + des)