Modifications

This commit is contained in:
Jeison Yehuda Amihud (Blender Dumbass) 2021-01-02 23:38:44 +00:00
parent 9c9cd8e1be
commit f6cf881283

View file

@ -235,8 +235,6 @@ def modules_test(Modules, title, setting):
print("\033[1;m") print("\033[1;m")
if not settings.read("Python-is-good"):
Modules = { Modules = {
"os":None, "os":None,
"gi":None, "gi":None,
@ -258,8 +256,6 @@ if not settings.read("Python-is-good"):
modules_test(Modules, "checkingpythonmodules", "Python-is-good") modules_test(Modules, "checkingpythonmodules", "Python-is-good")
if not settings.read("VCStudio-is-good"):
missing = [] missing = []
try: try:
@ -295,7 +291,7 @@ if not settings.read("VCStudio-is-good"):
test = test.read() test = test.read()
if f.endswith(".py") and not "import bpy" in test\ if f.endswith(".py") and not "import bpy" in test\
and "-" not in f and f != "run.py": and "-" not in f and f != "run.py" and not "network" in f:
Modules[f.replace("/", ".")[:-3]] = None Modules[f.replace("/", ".")[:-3]] = None
num += 1 num += 1
except: except: