We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2694afa commit ed4abd5Copy full SHA for ed4abd5
app.py
@@ -44,7 +44,7 @@ def get_ip():
44
attempts = 0
45
max_attempts = 10
46
while attempts < max_attempts:
47
- if len(get_ip()) < 5 and "fe80" not in get_ip():
+ if len(get_ip()) < 5 and "fe80" in get_ip():
48
sleep(3)
49
print("Waiting for ip address...")
50
max_attempts += 1
@@ -60,7 +60,7 @@ def get_ip():
60
ssh into it with: `ssh root@{public_ip}` using your public key\n
61
You might need to wait a minute or two before the public address is
62
reachable. Not 100% sure why.\n
63
- You can expediate it by traceroute6{public_ip} will add your route to
+ You can expediate it by traceroute6 {public_ip} will add your route to
64
routing tables along the way."""
65
}
66
),
0 commit comments