From 5b9c05abed2c3e1cf319b08986fe391128f57ef1 Mon Sep 17 00:00:00 2001 From: tmaeno Date: Mon, 22 Nov 2021 11:20:25 +0100 Subject: [PATCH] 1.4.93 --- pandaclient/Client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandaclient/Client.py b/pandaclient/Client.py index a760a6b2..fb1c2f9f 100755 --- a/pandaclient/Client.py +++ b/pandaclient/Client.py @@ -1661,6 +1661,8 @@ def get_user_secerts(verbose=False): output = json.loads(output) if not output[0]: return 0, output + if not output[1]: + return 0, (output[0], {}) return 0, (output[0], json.loads(output[1])) except Exception as e: msg = '{}.'.format(str(e))