urllib.urequest: PEP8 fix.

pull/73/head
Paul Sokolovsky 2016-04-16 21:30:54 +03:00
rodzic 99c7b546d1
commit 8506e36466
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
import usocket
def urlopen(url, data=None, method="GET"):
if data is not None and method=="GET":
if data is not None and method == "GET":
method = "POST"
try:
proto, dummy, host, path = url.split("/", 3)