From d2f6b6e6afdc6135e0c4a0badb79eaaadbb02e7a Mon Sep 17 00:00:00 2001 From: 5hojib Date: Wed, 22 Jan 2025 10:59:32 +0600 Subject: [PATCH] update --- CHANGELOG.md | 2 +- update.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e8ad25b9..6d6579a32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## v2.0.2 - 2025-01- +## v2.0.2 - 2025-01-22 ### Fixed diff --git a/update.py b/update.py index c4597d2f0..1d11cdbab 100644 --- a/update.py +++ b/update.py @@ -70,7 +70,6 @@ def format(self, record: LogRecord) -> str: config_file = { key: value.strip() if isinstance(value, str) else value for key, value in vars(settings).items() - if not key.startswith("__") } except ModuleNotFoundError: log_error( @@ -112,7 +111,7 @@ def format(self, record: LogRecord) -> str: "https://github.com/AeonOrg/Aeon-MLTB", ) -UPSTREAM_BRANCH = config_file.get("UPSTREAM_BRANCH", "") or "beta" +UPSTREAM_BRANCH = config_file.get("UPSTREAM_BRANCH", "") or "main" if UPSTREAM_REPO: if path.exists(".git"):