Fixed bug in infra.py problem with the que
Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
parent
999e9896b6
commit
d93d6f36a3
|
@ -201,7 +201,7 @@ def shared_folders():
|
|||
)
|
||||
src_q = collections.deque(src_paths)
|
||||
des_q = collections.deque(des_paths)
|
||||
size_q = len(src_q)
|
||||
size_q = len(des_q)
|
||||
for size_length in range(size_q):
|
||||
source = src_q.popleft()
|
||||
des = des_q.popleft()
|
||||
|
|
Loading…
Reference in New Issue