From 0660799e8854f57951cb9e65e684348a83078424 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20N=C3=A4slund?= Date: Wed, 16 Nov 2022 20:52:51 +0100 Subject: typos --- src/soc_collector/soc_collector_cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/soc_collector/soc_collector_cli.py b/src/soc_collector/soc_collector_cli.py index 914db17..b579108 100644 --- a/src/soc_collector/soc_collector_cli.py +++ b/src/soc_collector/soc_collector_cli.py @@ -126,7 +126,7 @@ def replace_action(data: str) -> None: req.raise_for_status() json_data = json.loads(req.text) - print(f'Inserted data OK - key: {json_data["_id"]}') + print(f'Replaced data OK - key: {json_data["key"]}') def insert_action(data: str) -> None: @@ -144,7 +144,7 @@ def insert_action(data: str) -> None: req.raise_for_status() json_data = json.loads(req.text) - print(f'Inserted data OK - key: {json_data["_id"]}') + print(f'Inserted data OK - key: {json_data["key"]}') def get_action(data: str) -> None: -- cgit v1.1