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")
if not settings.read("Python-is-good"):
Modules = {
"os":None,
"gi":None,
@ -258,8 +256,6 @@ if not settings.read("Python-is-good"):
modules_test(Modules, "checkingpythonmodules", "Python-is-good")
if not settings.read("VCStudio-is-good"):
missing = []
try:
@ -295,7 +291,7 @@ if not settings.read("VCStudio-is-good"):
test = test.read()
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
num += 1
except: