From 9ac1145a5a6226ca8e65d8fe10d15b32c764f8d3 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Fri, 26 Apr 2024 13:44:49 -0400 Subject: [PATCH] [3] fix `-git` calls --- VERSION | 2 +- modules/github.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 6388a9ab..83151ae2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.0-develop2 +2.0.0-develop3 diff --git a/modules/github.py b/modules/github.py index 72da6494..2ee9c3b2 100644 --- a/modules/github.py +++ b/modules/github.py @@ -68,7 +68,7 @@ class GitHub: def config_tags(self): if not self._config_tags: try: - self._config_tags = [r["ref"][11:] for r in self._requests(f"{kometa_base}-Configs/git/refs/tags")] + self._config_tags = [r["ref"][11:] for r in self._requests(f"{kometa_base}/Community-Configs/git/refs/tags")] except TypeError: pass return self._config_tags