Comment 11 for bug 183229

Revision history for this message
Tommi (tommi+-deactivatedaccount) wrote :

Becky - it seems there's an extra space character at the end of this line:

    $if page.d.get('reviews'):

My guess is that removing it should help. Or, you could try replacing the line altogether with this:

    $if page.d.get('reviews') and len(page.d.reviews) > 0:

...I think it should help.