Skip to content

Commit

Permalink
Merge pull request #415 from radish-bdd/bugfix/stable-unicode-stdout
Browse files Browse the repository at this point in the history
fix only strings can be printed not ColorfulString
  • Loading branch information
timofurrer committed Mar 27, 2021
2 parents 1f9bc62 + b00e9ea commit ac0ad6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radish/testing/matches.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def test_step_matches_configs(
for step in missing_steps:
missing_step_report += "- {0} at ".format(colorful.cyan(step[0]))
missing_step_report += colorful.cyan(step[1]) + "\n"
sys.stdout.write(missing_step_report)
sys.stdout.write(u(missing_step_report))

return ret

Expand Down

0 comments on commit ac0ad6f

Please sign in to comment.