Skip to content

Commit

Permalink
iframe-bot/show-last-messages: Fix line with length greater than 120.
Browse files Browse the repository at this point in the history
  • Loading branch information
taranjeet authored and timabbott committed Jul 23, 2016
1 parent 3faa5c1 commit 5e34e5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/deprecated/iframe-bot/show-last-messages
Expand Up @@ -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>')

Expand Down

0 comments on commit 5e34e5b

Please sign in to comment.