It isn't the root, it's wherever we actually are

This commit is contained in:
Jean-Paul Calderone 2020-10-21 07:22:00 -04:00
parent a91dba5f5b
commit dbe2d4efd7

View File

@ -90,8 +90,8 @@ class OphandleTable(resource.Resource, service.Service):
""" """
ophandle = get_arg(req, "ophandle").decode("utf-8") ophandle = get_arg(req, "ophandle").decode("utf-8")
assert ophandle assert ophandle
root = DecodedURL.from_text(unicode(URLPath.fromRequest(req))) here = DecodedURL.from_text(unicode(URLPath.fromRequest(req)))
target = root.click(u"/").child(u"operations", ophandle) target = here.click(u"/").child(u"operations", ophandle)
output = get_arg(req, "output") output = get_arg(req, "output")
if output: if output:
target = target.add(u"output", output.decode("utf-8")) target = target.add(u"output", output.decode("utf-8"))