Updated
Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
parent
5cfff71629
commit
a3f8072738
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue