Skip to content

Commit

Permalink
libClusterFuzz: Use utils.decode_to_unicode() instead of str.decode(). (
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverchang authored Sep 15, 2021
1 parent 1fae48f commit 45fdb21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/clusterfuzz/_internal/system/new_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def communicate(self, input=None): # pylint: disable=redefined-builtin
else:
stdout += line

sys.stdout.write(line.decode())
sys.stdout.write(utils.decode_to_unicode(line))

self._popen.wait()
else:
Expand Down
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setuptools.setup(
name='clusterfuzz',
version='2.5.4.post5',
version='2.5.5',
author='ClusterFuzz authors',
author_email='[email protected]',
description='ClusterFuzz',
Expand Down

0 comments on commit 45fdb21

Please sign in to comment.