Skip to content

Commit 5b741f0

Browse files
Merge pull request #78 from Yikun/patch-3
Fix regex to cover '1 commit result' case
2 parents 6f95b24 + c70da58 commit 5b741f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

criticality_score/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@
4545
FAIL_RETRIES = 7
4646

4747
# Regex to match dependents count.
48-
DEPENDENTS_REGEX = re.compile(b'.*[^0-9,]([0-9,]+).*commit results', re.DOTALL)
48+
DEPENDENTS_REGEX = re.compile(b'.*[^0-9,]([0-9,]+).*commit result', re.DOTALL)

0 commit comments

Comments
 (0)