1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-25 01:16:14 +01:00

core.Request: Store apiurl the object was initialized from

This commit is contained in:
Daniel Mach 2023-02-10 11:18:57 +01:00
parent ac153a27fa
commit 09ad87c865

View File

@ -4501,6 +4501,7 @@ def get_request(apiurl: str, reqid):
r = Request() r = Request()
r.read(root) r.read(root)
r.apiurl = apiurl
return r return r