Skip to content

Commit

Permalink
#92 review fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vancamti committed Mar 28, 2023
1 parent 743e02e commit db640ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion urihandler/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self, uris=[]):
def handle(self, uri, request):
params = ""
if "?" in uri:
uri, params = uri.rsplit("?", 1)
uri, params = uri.split("?", 1)
uris = copy.deepcopy(self.uris)
for u in uris:
if "mount" not in u or u["mount"]:
Expand Down

0 comments on commit db640ce

Please sign in to comment.