mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-30 20:09:14 +03:00
Исключаем модули с двумя минусами в имени из сборки
This commit is contained in:
@@ -15,7 +15,7 @@ allAPI_exec = ""
|
|||||||
|
|
||||||
def getDirs(path):
|
def getDirs(path):
|
||||||
for file in os.listdir(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
|
yield file
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user