mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
Исключаем модули с двумя минусами в имени из сборки
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user