From 40765aa018e20b72252ce5cffab15fa01fa56d79 Mon Sep 17 00:00:00 2001 From: Guido Trotter <ultrotter@google.com> Date: Fri, 7 Aug 2009 11:07:37 +0100 Subject: [PATCH] serializer.DumpSignedJson Don't indent the final message. Signed-off-by: Guido Trotter <ultrotter@google.com> Reviewed-by: Michael Hanselmann <hansmi@google.com> --- lib/serializer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/serializer.py b/lib/serializer.py index 34c5a3b93..5df5bfd41 100644 --- a/lib/serializer.py +++ b/lib/serializer.py @@ -93,7 +93,7 @@ def DumpSignedJson(data, key, salt=None): 'salt': salt, 'hmac': hmac.new(key, salt + txt, sha1).hexdigest(), } - return DumpJson(signed_dict) + return DumpJson(signed_dict, indent=False) def LoadSignedJson(txt, key): -- GitLab