From b7f7b94c39ec004f17d5204b39568d5be73ef6a4 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Thu, 27 Aug 2015 09:59:24 -0500 Subject: [PATCH] Issue #682. Use a more useful alt text. --- webcompat/form.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/webcompat/form.py b/webcompat/form.py index f61b27fec..fbb82cbe7 100644 --- a/webcompat/form.py +++ b/webcompat/form.py @@ -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