Skip to content

Commit cdb2973

Browse files
committed
hbtn_status
1 parent 0c6ad78 commit cdb2973

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

0x11-python-network_1/0-hbtn_status.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
with urllib.request.urlopen('https://alx-intranet.hbtn.io/status') as req:
1111
res = req.read()
1212
print("Body response:")
13-
print(" - type: {}".format(type(res)))
14-
print(" - content: {}".format(res))
15-
print(" - utf8 content: {}".format(res.decode('UTF-8')))
13+
print("\t- type: {}".format(type(res)))
14+
print("\t- content: {}".format(res))
15+
print("\t- utf8 content: {}".format(res.decode('UTF-8')))

0 commit comments

Comments
 (0)