From 5cd05dfa8fea6c8976a3fc74d2fc0381498405cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Tue, 30 Dec 2025 10:54:24 +0100 Subject: [PATCH] [fix] record id's sind jetzt strings --- source/macros.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/macros.py b/source/macros.py index 39b5886..9fc2bb5 100644 --- a/source/macros.py +++ b/source/macros.py @@ -147,7 +147,7 @@ def api_macro_save( } ) id_ = result["id"] - log("created record %u" % id_) + log("created record %s" % id_) elif (count == 1): id_ = matching[0]["id"] result = api_call( @@ -160,7 +160,7 @@ def api_macro_save( "content": content, } ) - log("updated record %u" % id_) + log("updated record %s" % id_) else: log("found multiple records with this name and type") api_macro_logout(environment, accesstoken)