From 14d79aa8af974061913a2f79709ca2a0b0280e69 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Thu, 4 Jan 2024 23:22:20 +0100 Subject: [PATCH] fix return --- autoupdate_app_sources/autoupdate_app_sources.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autoupdate_app_sources/autoupdate_app_sources.py b/autoupdate_app_sources/autoupdate_app_sources.py index 9464807..73971b3 100644 --- a/autoupdate_app_sources/autoupdate_app_sources.py +++ b/autoupdate_app_sources/autoupdate_app_sources.py @@ -239,6 +239,8 @@ class AppAutoUpdater: message = "Upgrade sources" new_branch = "ci-auto-update-sources" + print(message) + try: # Get the commit base for the new branch, and create it commit_sha = self.repo.get_branch(self.base_branch).commit.sha @@ -317,7 +319,7 @@ class AppAutoUpdater: latest_tarball = ( f"{upstream}/archive/refs/tags/{latest_version_orig}.tar.gz" ) - return latest_version, latest_tarball + return latest_version, latest_tarball, latest_release_html_url # FIXME else: if isinstance(asset, str):