From 54bac87b8a1567acb9e62687f51520cee71105a1 Mon Sep 17 00:00:00 2001 From: --unset Date: Sun, 5 May 2024 10:13:24 -0400 Subject: [PATCH] Add comment --- app/classes/minecraft/bigbucket.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/classes/minecraft/bigbucket.py b/app/classes/minecraft/bigbucket.py index 203cb484..71a30c12 100644 --- a/app/classes/minecraft/bigbucket.py +++ b/app/classes/minecraft/bigbucket.py @@ -18,6 +18,8 @@ logger = logging.getLogger(__name__) class BigBucket: def __init__(self, helper): self.helper = helper + # remove any trailing slash from config.json + # url since we add it on all the calls self.base_url = str( self.helper.get_setting("big_bucket_repo", "https://jars.arcadiatech.org") ).rstrip("/")