diff --git a/python_modules/build_iso.py b/python_modules/build_iso.py index f18c89df..d473b214 100644 --- a/python_modules/build_iso.py +++ b/python_modules/build_iso.py @@ -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 diff --git a/python_modules/infra.py b/python_modules/infra.py index e0699dec..9c1c14ef 100644 --- a/python_modules/infra.py +++ b/python_modules/infra.py @@ -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) +