Skip to content

Commit 4df08a9

Browse files
committed
BLD: fix up merge scripts
1 parent 576f319 commit 4df08a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/merge-py.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def clean_up():
116116

117117
branches = run_cmd("git branch").replace(" ", "").split("\n")
118118

119-
for branch in [b for b in branches if x.startswith(BRANCH_PREFIX)]:
119+
for branch in [b for b in branches if b.startswith(BRANCH_PREFIX)]:
120120
print("Deleting local branch %s" % branch)
121121
run_cmd("git branch -D %s" % branch)
122122

0 commit comments

Comments
 (0)