Skip to content

Commit

Permalink
parse_dash_results: Better info messages
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Sep 28, 2017
1 parent 84955b2 commit a33c86d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/parse_dash_results.py
Expand Up @@ -162,7 +162,10 @@ def parse_url(self, url):
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()

Expand Down

0 comments on commit a33c86d

Please sign in to comment.