From 795e508805d897f7ecdab5a18c62018a92446129 Mon Sep 17 00:00:00 2001 From: Salamandar <6552989+Salamandar@users.noreply.github.com> Date: Mon, 16 Jan 2023 11:10:56 +0100 Subject: [PATCH] Fix typo in updater.py --- .github/workflows/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/updater.py b/.github/workflows/updater.py index cb84e47..c92fb2c 100755 --- a/.github/workflows/updater.py +++ b/.github/workflows/updater.py @@ -102,7 +102,7 @@ def main(): return # Proceed only if a PR for this new version does not already exist - branch = f"ci-auto-update-v${latest_version}" + branch = f"ci-auto-update-v{latest_version}" command = ["git", "ls-remote", "--exit-code", "-h", repo, branch] if run(command, stderr=PIPE, stdout=PIPE, check=False).returncode == 0: logging.warning("A branch already exists for this update")