From 765dbc6a56afbfe6bb7ab2e68a1b23c6222d0250 Mon Sep 17 00:00:00 2001
From: Ebad Kamil <ebad.kamil@xfel.eu>
Date: Mon, 31 Aug 2020 16:37:07 +0200
Subject: [PATCH] To fix error while using update_config script

---
 webservice/webservice.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webservice/webservice.py b/webservice/webservice.py
index f8932146a..ebdcac554 100644
--- a/webservice/webservice.py
+++ b/webservice/webservice.py
@@ -176,7 +176,7 @@ async def change_config(socket, config, updated_config, karabo_id, instrument, c
                 if action != "data-mapping":
                     subconf[action][instrument] = instruments[instrument]
                 else:
-                    subconf[action][instrument] = instruments[karabo_id]
+                    subconf[action][karabo_id] = instruments[karabo_id]
             with open(fpath, "w") as wf:
                 wf.write(yaml.dump(subconf, default_flow_style=False))
     new_conf = None
-- 
GitLab