From 8506e364664637ae24ce3c2a475b58cd94c77544 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 16 Apr 2016 21:30:54 +0300 Subject: [PATCH] urllib.urequest: PEP8 fix. --- urllib.urequest/urllib/urequest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/urllib.urequest/urllib/urequest.py b/urllib.urequest/urllib/urequest.py index d365eda7..72b732d6 100644 --- a/urllib.urequest/urllib/urequest.py +++ b/urllib.urequest/urllib/urequest.py @@ -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)