Skip to content

Commit

Permalink
Merge pull request #55 from flowerncsu/bug-fixes
Browse files Browse the repository at this point in the history
Change type of error message to str instead of bytes.
  • Loading branch information
freakboy3742 committed Jan 14, 2017
2 parents c70d3b6 + d43332f commit 07b748b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cricket/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def poll(self):
elif stopped:
# Suite has stopped producing output.
if self.error_buffer:
self.emit('suite_error', error=b'\n'.join(self.error_buffer))
self.emit('suite_error', error='\n'.join(self.error_buffer))
else:
self.emit('suite_error', error='Test output ended unexpectedly')

Expand Down

0 comments on commit 07b748b

Please sign in to comment.