Skip to content

Commit

Permalink
Update requester.py
Browse files Browse the repository at this point in the history
  • Loading branch information
maurosoria authored Dec 9, 2020
1 parent 7855aab commit 95f6e15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/connection/requester.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def __init__(
self.protocol,
self.host if self.requestByHostname else self.ip,
self.port,
self.basePath if self.basePath.startswith("/") else self.basePath[-1:],
self.basePath if self.basePath.startswith("/") else "/" + self.basePath,
"" if self.basePath.endswith("/") else "/"
)

Expand Down

0 comments on commit 95f6e15

Please sign in to comment.