fix: 反斜杠处理错误

fix #7470
This commit is contained in:
uye
2023-12-04 00:06:30 +08:00
parent ed4cbda065
commit dfd8a58180

View File

@@ -28,10 +28,10 @@ translations = {
}
translations_resort = {
'新增 \\| New': 'feat',
'改进 \\| Improved': 'perf',
'修复 \\| Fix': 'fix',
'其他 \\| Other': 'other'
'新增 | New': 'feat',
'改进 | Improved': 'perf',
'修复 | Fix': 'fix',
'其他 | Other': 'other'
}
def individual_commits(commits: dict, indent: str = "") -> (str, list):