From cf29d7e400562468be3b07fa0086ccef71713409 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 4 Mar 2021 18:52:02 +0200 Subject: [PATCH] Typo fix --- platformio/package/manifest/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/package/manifest/schema.py b/platformio/package/manifest/schema.py index 612112ff..d2a527e5 100644 --- a/platformio/package/manifest/schema.py +++ b/platformio/package/manifest/schema.py @@ -255,7 +255,7 @@ class ManifestSchema(BaseSchema): def load_spdx_licenses(): version = "3.11" spdx_data_url = ( - "hhttps://raw.githubusercontent.com/spdx/license-list-data/" + "https://raw.githubusercontent.com/spdx/license-list-data/" "v%s/json/licenses.json" % version ) return json.loads(fetch_remote_content(spdx_data_url))