diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-05-07 11:58:48 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-05-07 12:12:49 +0200 |
commit | 520bb21a4a0887478dffbcc83997a4015f7e67a4 (patch) | |
tree | 7d96df899c086e899838981d71d9d484de3e1aba /doc/invocations-http-server/server.py | |
parent | ba921a5474e30912ebfc0417e5336507f345ed16 (diff) | |
download | justbuild-520bb21a4a0887478dffbcc83997a4015f7e67a4.tar.gz |
Invocation server: fix access to configuration in overview list
Diffstat (limited to 'doc/invocations-http-server/server.py')
-rwxr-xr-x | doc/invocations-http-server/server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/invocations-http-server/server.py b/doc/invocations-http-server/server.py index 83df3fd1..0e4175da 100755 --- a/doc/invocations-http-server/server.py +++ b/doc/invocations-http-server/server.py @@ -113,7 +113,7 @@ class InvocationServer: profile_data = {} count += 1 target = profile_data.get("target") - config = profile_data.get("config", {}) + config = profile_data.get("configuration", {}) invocation = { "name": e, "subcommand": profile_data.get("subcommand"), |