View Single Post
int_ua's Avatar
Posts: 676 | Thanked: 1,067 times | Joined on Jul 2010 @ Kyiv, Ukraine
#1392
Originally Posted by int_ua View Post
Code:
    originalMessage = "".join(step.getMessage())
TypeError
Workaround:
Code:
    originalMessage = "".join(str(step.getMessage()))
doesn't fix the original problem but is easy to apply.
 

The Following 5 Users Say Thank You to int_ua For This Useful Post: