Updated
Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
parent
aaa6f87f9b
commit
e9cd06f23f
|
@ -266,6 +266,10 @@ 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()
|
||||
des = des_q.popleft()
|
||||
|
@ -274,9 +278,6 @@ def icons_themes():
|
|||
dirs_exist_ok = True, ignore=_logpath
|
||||
)
|
||||
|
||||
def _logpath(path, names):
|
||||
logging.info('Working in %s' % path)
|
||||
return [] # nothing will be ignored
|
||||
|
||||
|
||||
def shared_files():
|
||||
|
|
Loading…
Reference in New Issue