Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
5hojib committed Jan 22, 2025
1 parent 7d897e9 commit d2f6b6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 1 addition & 2 deletions update.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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"):
Expand Down

0 comments on commit d2f6b6e

Please sign in to comment.