mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-05 22:09:56 +03:00
Remove unneeded indent in "HTTP client class"
This commit is contained in:
@@ -27,9 +27,8 @@ It will connect and fetch a website.
|
||||
var err = http.connect("www.php.net",80) # Connect to host/port
|
||||
assert(err==OK) # Make sure connection was OK
|
||||
|
||||
|
||||
# Wait until resolved and connected
|
||||
while( http.get_status()==HTTPClient.STATUS_CONNECTING or http.get_status()==HTTPClient.STATUS_RESOLVING):
|
||||
# Wait until resolved and connected
|
||||
http.poll()
|
||||
print("Connecting..")
|
||||
OS.delay_msec(500)
|
||||
|
||||
Reference in New Issue
Block a user