iframe-bot/show-last-messages: Fix line with length greater than 120.

This commit is contained in:
Taranjeet Singh 2016-07-24 00:39:45 +05:30 committed by Tim Abbott
parent 3faa5c1dd9
commit 5e34e5bf40
1 changed files with 2 additions and 1 deletions

View File

@ -154,7 +154,8 @@ for msg in result['messages']:
uniwrite(f, '<img class="avatar" src="%s" />' % msg['avatar_url'])
uniwrite(f, '<div class="sender-bar">')
uniwrite(f, '<div class="recipient" style="background-color: %s;">%s &gt; %s</div>' % (color[msg['display_recipient']], msg['display_recipient'], msg['subject']))
uniwrite(f, '<div class="recipient" style="background-color: %s;">%s &gt; %s</div>' % (
color[msg['display_recipient']], msg['display_recipient'], msg['subject']))
uniwrite(f, '<span class="sender">%s</span>' % msg['sender_full_name'])
uniwrite(f, '</div>')