repair app.py
This commit is contained in:
parent
20edac4cdf
commit
e87312e1da
|
@ -146,7 +146,8 @@ class App:
|
|||
|
||||
def get_host(self):
|
||||
ips = gethostbyname_ex(gethostname())[2]
|
||||
for ip in ips:
|
||||
if ip.split(".")[2] == "1":
|
||||
return ip
|
||||
return ips[1]
|
||||
if len(ips) > 1:
|
||||
for ip in ips:
|
||||
if ip.split(".")[2] == "1":
|
||||
return ip
|
||||
return ips[0]
|
||||
|
|
Loading…
Reference in New Issue