We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e131b6 commit 1af666bCopy full SHA for 1af666b
1 file changed
adafruit_esp32spi/adafruit_esp32spi_requests.py
@@ -86,6 +86,8 @@ def request(method, url, data=None, json=None, headers=None, stream=None):
86
87
try:
88
proto, dummy, host, path = url.split("/", 3)
89
+ # replace spaces in path
90
+ path = path.replace(" ", "%20")
91
except ValueError:
92
proto, dummy, host = url.split("/", 2)
93
path = ""
0 commit comments