From edd9591db767df2cac854087e54f465837dd6fca Mon Sep 17 00:00:00 2001 From: Laurent Date: Tue, 16 Jan 2024 10:47:13 +0100 Subject: [PATCH] tst --- subscriptions/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subscriptions/views.py b/subscriptions/views.py index 6ebf240..84e7784 100644 --- a/subscriptions/views.py +++ b/subscriptions/views.py @@ -122,7 +122,7 @@ def load_root_certificate(): in_file = open("AppleRootCA-G3.cer", "rb") # opening for [r]eading as [b]inary data = in_file.read() # if you only wanted to read 512 bytes, do .read(512) in_file.close() - return data + return load_certificate(FILETYPE_ASN1, data) def _get_root_cert(root_cert_path):