Skip to content

Commit

Permalink
Init fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlu1248 committed Mar 14, 2024
1 parent 416f39c commit 3ec3b32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sweepai/handlers/on_ticket.py
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ def on_ticket(
)
overrided_branch_name = None
if branch_match and "branch_name" in branch_match.groupdict():
overrided_branch_name = branch_match.groupdict()["branch_name"].strip()
overrided_branch_name = branch_match.groupdict()["branch_name"].strip().strip("`\"\'")
if overrided_branch_name == "_No response_":
continue
SweepConfig.get_branch(repo, overrided_branch_name)
Expand Down

0 comments on commit 3ec3b32

Please sign in to comment.