Errors handling when importing native color scheme
This commit is contained in:
parent
5184ed4d59
commit
0b53361e61
|
@ -93,24 +93,27 @@ else:
|
||||||
exec(open("ip2e-conf.py").read())
|
exec(open("ip2e-conf.py").read())
|
||||||
|
|
||||||
#Import native OS color scheme
|
#Import native OS color scheme
|
||||||
def GreenColor():
|
try:
|
||||||
|
def GreenColor():
|
||||||
if os.name == "posix":
|
if os.name == "posix":
|
||||||
GreenColor = (chr(27)+"[1;32m")
|
GreenColor = (chr(27)+"[1;32m")
|
||||||
print (GreenColor+"", end="")
|
print (GreenColor+"", end="")
|
||||||
elif os.name == "nt":
|
elif os.name == "nt":
|
||||||
os.system("color 2")
|
os.system("color 2")
|
||||||
def RedColor():
|
def RedColor():
|
||||||
if os.name == "posix":
|
if os.name == "posix":
|
||||||
RedColor = (chr(27)+"[1;31m")
|
RedColor = (chr(27)+"[1;31m")
|
||||||
print (RedColor+"", end="")
|
print (RedColor+"", end="")
|
||||||
elif os.name == "nt":
|
elif os.name == "nt":
|
||||||
os.system("color 4")
|
os.system("color 4")
|
||||||
def OrangeColor():
|
def OrangeColor():
|
||||||
if os.name == "posix":
|
if os.name == "posix":
|
||||||
OrangeColor = (chr(27)+"[1;33m")
|
OrangeColor = (chr(27)+"[1;33m")
|
||||||
print (OrangeColor+"", end="")
|
print (OrangeColor+"", end="")
|
||||||
elif os.name == "nt":
|
elif os.name == "nt":
|
||||||
os.system("color 6")
|
os.system("color 6")
|
||||||
|
except:
|
||||||
|
print ("Error importing native color scheme")
|
||||||
|
|
||||||
#Check if exists a previous log.file.
|
#Check if exists a previous log.file.
|
||||||
if os.path.isfile("ip2e.log"):
|
if os.path.isfile("ip2e.log"):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user