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")
|
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:
|
||||||
|
|
Loading…
Add table
Reference in a new issue