Skip to content

Commit

Permalink
Merge pull request #684 from /issues/682/1
Browse files Browse the repository at this point in the history
Fixes #682. Use a more useful alt text.
  • Loading branch information
karlcow committed Aug 28, 2015
2 parents 4277540 + b7f7b94 commit 248fb09
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions webcompat/form.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,7 @@ def build_formdata(form_object):
'''.format(**formdata)
# Add the image, if there was one.
if form_object.get('image_upload') is not None:
body += '\n\n![{image_name}]({image_url})'.format(
image_name=form_object.get('image_upload').get('filename'),
body += '\n\n![Screenshot of the site issue]({image_url})'.format(
image_url=form_object.get('image_upload').get('url'))
result = {}
result['title'] = summary
Expand Down

0 comments on commit 248fb09

Please sign in to comment.