Skip to content

Commit 155398e

Browse files
committed
fix(cz/conventional_commits): fix schema_pattern break due to rebase
1 parent a68c5ad commit 155398e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commitizen/cz/conventional_commits/conventional_commits.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def schema(self) -> str:
178178
def schema_pattern(self) -> str:
179179
PATTERN = (
180180
r"(build|ci|docs|feat|fix|perf|refactor|style|test|chore|revert|bump)"
181-
r"(\(\S+\))?:\s.*"
181+
r"(\(\S+\))?:(\s.*)"
182182
)
183183
return PATTERN
184184

0 commit comments

Comments
 (0)