We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd55992 commit 103c703Copy full SHA for 103c703
gitstack.py
@@ -581,7 +581,7 @@ def parse_prev_prs_from_table(self) -> List["PullRequest"]:
581
ret.append(PullRequest.from_ref(int(pr_str[1:])))
582
else:
583
# Parse the URL out of a markdown link
584
- match = re.match(r"^\[[^\]]*\]\((.*)\)$", line)
+ match = re.match(r"^\[[^\]]*\]\((.*)\)$", pr_str)
585
if match:
586
ret.append(PullRequest.from_ref(match[1]))
587
return ret
0 commit comments