From 05732bb06d6601fa54e557a4b4f250cb35fb16ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20K=C3=B6necke?= Date: Mon, 29 Apr 2024 14:10:40 +0200 Subject: [PATCH] update OpenMensa API endpoint to use HTTPS --- openmensa/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmensa/__init__.py b/openmensa/__init__.py index 2915e29..9a64ad3 100644 --- a/openmensa/__init__.py +++ b/openmensa/__init__.py @@ -15,7 +15,7 @@ class OpenMensa: """Python wrapper for OpenMensa API v2""" - __ENDPOINT = 'http://openmensa.org/api/v2' + __ENDPOINT = 'https://openmensa.org/api/v2' @staticmethod def __make_json_request(path, params=None):