From 879a67de6f32fcc7d97beb9024bdd5d94663b8b1 Mon Sep 17 00:00:00 2001 From: biver Date: Mon, 16 May 2022 21:30:20 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BA=D0=BB=D1=8E=D1=87=D0=B0?= =?UTF-8?q?=D0=B5=D0=BC=20=D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D0=B8=20=D1=81=20?= =?UTF-8?q?=D0=B4=D0=B2=D1=83=D0=BC=D1=8F=20=D0=BC=D0=B8=D0=BD=D1=83=D1=81?= =?UTF-8?q?=D0=B0=D0=BC=D0=B8=20=D0=B2=20=D0=B8=D0=BC=D0=B5=D0=BD=D0=B8=20?= =?UTF-8?q?=D0=B8=D0=B7=20=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- accembleItems.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accembleItems.py b/accembleItems.py index fae42c91..3a5315f8 100644 --- a/accembleItems.py +++ b/accembleItems.py @@ -15,7 +15,7 @@ allAPI_exec = "" def getDirs(path): for file in os.listdir(path): - if os.path.isdir(os.path.join(path, file)): + if os.path.isdir(os.path.join(path, file)) and not("--" in file): yield file