Skip to content

Commit ed4abd5

Browse files
committed
Fixing IPv6 message instead of Local
1 parent 2694afa commit ed4abd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def get_ip():
4444
attempts = 0
4545
max_attempts = 10
4646
while attempts < max_attempts:
47-
if len(get_ip()) < 5 and "fe80" not in get_ip():
47+
if len(get_ip()) < 5 and "fe80" in get_ip():
4848
sleep(3)
4949
print("Waiting for ip address...")
5050
max_attempts += 1
@@ -60,7 +60,7 @@ def get_ip():
6060
ssh into it with: `ssh root@{public_ip}` using your public key\n
6161
You might need to wait a minute or two before the public address is
6262
reachable. Not 100% sure why.\n
63-
You can expediate it by traceroute6{public_ip} will add your route to
63+
You can expediate it by traceroute6 {public_ip} will add your route to
6464
routing tables along the way."""
6565
}
6666
),

0 commit comments

Comments
 (0)