Skip to content

Commit

Permalink
Merge pull request #1883 from timbrel/fix-deleting-unmerged-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
kaste authored Apr 5, 2024
2 parents bb1ee37 + 5aa2dfa commit feba09e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/commands/branch.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"""

EXTRACT_COMMIT = re.compile(r"\(was (.+)\)")
NOT_MERGED_WARNING = re.compile(r"the branch.*is not fully merged\.", re.I)
NOT_MERGED_WARNING = re.compile(r"the branch.*is not fully merged", re.I)
CANT_DELETE_USED_BRANCH = re.compile(r"cannot delete branch .+ (checked out|used by worktree) at ", re.I)


Expand Down

0 comments on commit feba09e

Please sign in to comment.