Merge pull request #8565 from ClickHouse/make_changelog_unicode_pattern

make_changelog.py::process_unknown_commits unicode fix
This commit is contained in:
tavplubix 2020-01-09 12:55:16 +03:00 committed by GitHub
commit 17307eda53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -207,7 +207,7 @@ def get_users_info(pull_requests, commits_info, token, max_retries, retry_timeou
# List of unknown commits -> text description.
def process_unknown_commits(commits, commits_info, users):
pattern = 'Commit: [{}]({})\nAuthor: {}\nMessage: {}'
pattern = u'Commit: [{}]({})\nAuthor: {}\nMessage: {}'
texts = []