• 
      

    Fix unicode problems in BaseReviewRequestDetails.__str__

    Review Request #5768 — Created May 4, 2014 and submitted — Latest diff uploaded

    Information

    Review Board
    release-2.0.x
    b9f1956...

    Reviewers

    The BaseReviewRequestDetails __str__ method was returning unicode, even for python
    2. Most of the time this wasn't an issue, since we don't use that method very
    much, but if the summary contained unicode characters, it could break the admin
    UI. Making this class use the @python_2_unicode_compatible decorator fixes
    this.

    Ran new unit test.