From 2097853990970a48bbb0cb0b77a988906d502f3b Mon Sep 17 00:00:00 2001 From: miquelduranfrigola Date: Mon, 10 Oct 2022 10:34:58 +0200 Subject: [PATCH] bugfix url of githubusercontent --- ersilia/hub/content/card.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ersilia/hub/content/card.py b/ersilia/hub/content/card.py index 2e577eea4..29482b13d 100644 --- a/ersilia/hub/content/card.py +++ b/ersilia/hub/content/card.py @@ -108,7 +108,7 @@ def __init__(self, config_json): @staticmethod def _get_read_only_airtable_api_key(): - url = "https://raw.githubusercontent.com/ersilia-os/ersilia/config/read_only_keys.json" + url = "https://raw.githubusercontent.com/ersilia-os/ersilia/master/config/read_only_keys.json" r = requests.get(url) data = r.json() return data["AIRTABLE_READONLY_API_KEY"]