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