Modifications
This commit is contained in:
parent
9c9cd8e1be
commit
f6cf881283
1 changed files with 64 additions and 68 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue