mirror of https://github.com/axmolengine/axmol.git
fixed as follow error
fixed as follow error: TypeError: cannot concatenate 'str' and 'NoneType' objects
This commit is contained in:
parent
ea2165e6ba
commit
7ada094e1f
2
setup.py
2
setup.py
|
@ -557,7 +557,7 @@ class SetEnvVar(object):
|
||||||
if ret is not None:
|
if ret is not None:
|
||||||
print(" ->Path " + ret + " was found\n")
|
print(" ->Path " + ret + " was found\n")
|
||||||
else:
|
else:
|
||||||
print(" ->Command " + ret + " not found\n")
|
print(" ->Command " + cmd + " not found\n")
|
||||||
return ret
|
return ret
|
||||||
|
|
||||||
def _find_value_from_sys(self, var_name):
|
def _find_value_from_sys(self, var_name):
|
||||||
|
|
Loading…
Reference in New Issue