Skip to content

Commit 3a9c211

Browse files
committed
fix: add missing fstring interpolation to merge-demo-feature error msg
1 parent 6c15657 commit 3a9c211

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/merge-demo-feature.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def merge_demo_feature(
4545
)
4646
pr_number: str = pr_number_query.stdout.strip()
4747
if pr_number == "":
48-
raise ValueError("Failed to find an existing PR from {} to {DEMO.develop_branch}")
48+
raise ValueError(f"Failed to find an existing PR from {branch} to {DEMO.develop_branch}")
4949

5050
gh("pr", "merge", pr_number, "--auto", "--delete-branch", "--merge")
5151

0 commit comments

Comments
 (0)