Skip to content

Commit 78b321e

Browse files
committed
fix(cz/conventional_commits): fix schema_pattern break due to rebase
1 parent 81b27c5 commit 78b321e

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
@@ -179,7 +179,7 @@ def schema(self) -> str:
179179
def schema_pattern(self) -> str:
180180
PATTERN = (
181181
r"(build|ci|docs|feat|fix|perf|refactor|style|test|chore|revert|bump)"
182-
r"(\(\S+\))?:\s.*"
182+
r"(\(\S+\))?:(\s.*)"
183183
)
184184
return PATTERN
185185

0 commit comments

Comments
 (0)