Skip to content

Commit

Permalink
Fixed ugly bytes representation in commit report.
Browse files Browse the repository at this point in the history
  • Loading branch information
mauritsvanrees committed Aug 22, 2019
1 parent 885cc54 commit 9182d3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plone/releaser/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,9 @@ def print_commits(commits_list, message=None):

for commit in commits_list:
print(
" {0}: {1}".format(
commit.author.name.encode("ascii", "replace"),
commit.summary.encode("ascii", "replace"),
u" {0}: {1}".format(
commit.author.name,
commit.summary,
)
)

Expand Down

0 comments on commit 9182d3f

Please sign in to comment.