diff --git a/scripts/statement_tools.py b/scripts/statement_tools.py index b98a894f0..8c704e2df 100644 --- a/scripts/statement_tools.py +++ b/scripts/statement_tools.py @@ -22,6 +22,8 @@ def push(auth, file): return else: logging.info(f"Statement from {file} was pushed") + result = res.json()[0] if isinstance(res.json(), list) else res.json() + logging.info(f"Statement key: {result.get('_key', None)}") return res