parse_dash_results: Better info messages

This commit is contained in:
Matthias Kuhn 2017-09-25 23:55:44 +02:00
parent 84955b2cdc
commit a33c86db90
No known key found for this signature in database
GPG Key ID: A0E766808764D73F

View File

@ -162,7 +162,10 @@ class ResultHandler(QDialog):
rendered_image = img.get('src')
images[test_name] = '{}/{}'.format(dash_url, rendered_image)
print('found images:\n{}'.format(images))
if images:
print('found images:\n{}'.format(images))
else:
print('no images found\n')
self.images = images
self.load_next()